1
0
forked from Alepha/Alepha

Make unit tests use the testing lib main function.

This commit is contained in:
2023-10-24 00:58:38 -04:00
parent 2ebb60e888
commit cafc66e09f
14 changed files with 8 additions and 88 deletions

View File

@ -156,9 +156,3 @@ namespace
assert( mtx.getWaiters().size() == 0 );
};
}
int
main( const int argcnt, const char *const *const argvec )
{
return runAllTests( { argvec + 1, argvec + argcnt } );
}

View File

@ -92,9 +92,3 @@ namespace
thread2.join();
};
}
int
main( const int argcnt, const char *const *const argvec )
{
return runAllTests( { argvec + 1, argvec + argcnt } );
}