added tests to meson

This commit is contained in:
mrbesen 2021-09-07 02:44:50 +02:00
parent 5435d54510
commit 5b0576aa0d
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
3 changed files with 19 additions and 3 deletions

View File

@ -2,6 +2,8 @@ project('libmrbesen', 'cpp', default_options : ['cpp_std=c++17', 'warning_level=
inc = include_directories('inc')
subdir('src')
subdir('inc')
subdir('src')
subdir('tests')

View File

@ -147,11 +147,13 @@ int testFiles_readFile() {
ASSERT(!files::readFile(NONEXISTENT_FILE, buf), "this file should not be read"); //try to read non existing file
bool r = files::readFile(std::string("tests/filestests.cpp"), buf);
const char* testfile = "tests/filestests.cpp";
bool r = files::readFile(std::string(testfile), buf);
ASSERT(r, "failed to read");
//alternative read
int fd = open("tests/filestests.cpp", O_RDONLY);
int fd = open(testfile, O_RDONLY);
const unsigned int size = 1024*1024; //1MB
char* buf2 = new char[size];
ssize_t rc = read(fd, buf2, size);

12
tests/meson.build Normal file
View File

@ -0,0 +1,12 @@
testSrc = files([
'doytests.cpp',
'filestests.cpp',
'main.cpp',
'stringspliteratortest.cpp',
'test.h',
'utilstest.cpp',
])
libmrbesentestexe = executable('libmrbesen_test', testSrc, libmrbesenSrc, include_directories: inc,)
test('libmrbesenTest', libmrbesentestexe, is_parallel: true, workdir: meson.source_root())