diff options
author | Simon Warta <[email protected]> | 2015-07-15 00:38:32 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-15 00:43:00 +0200 |
commit | 0fa9aa8f93fb38d56925818af74605757fea5527 (patch) | |
tree | 30fb0cc3d212d4476db5c48427fe1274e02215c1 /src/tests/tests.h | |
parent | d6ee37b106ffdb4d5c07d9f58ae1845b98125afe (diff) |
Fix TEST_DATA_DIR
Diffstat (limited to 'src/tests/tests.h')
-rw-r--r-- | src/tests/tests.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/tests.h b/src/tests/tests.h index d2fe0e69b..37d4a6fd3 100644 --- a/src/tests/tests.h +++ b/src/tests/tests.h @@ -47,9 +47,9 @@ void test_report(const std::string& name, size_t ran, size_t failed); #define TEST(expr, msg) do { if(!(expr)) { ++fails; std::cout << msg; } while(0) -#define LIB_SRC_DIR "lib/" -#define TEST_DATA_DIR "src/tests/data/" -#define PK_TEST_DATA_DIR "src/tests/data/pubkey" +#define TEST_DATA_DIR "src/tests/data" +#define TEST_DATA_DIR_PK "src/tests/data/pubkey" +#define TEST_DATA_DIR_ECC "src/tests/data/ecc" int test_main(int argc, char* argv[]); |