diff options
| author | Oskari Timperi <oskari.timperi@iki.fi> | 2014-05-17 15:53:08 +0300 |
|---|---|---|
| committer | Oskari Timperi <oskari.timperi@iki.fi> | 2014-05-17 15:53:08 +0300 |
| commit | 7beddab435eb1e1455fcd8ee6cbb83f395e4d537 (patch) | |
| tree | b74cea7db9c9c4243e8deb6518b593d1c56eea27 | |
| parent | 50fb851ec2afac36e859db36aca04c471a9f8bc4 (diff) | |
| download | lispish-7beddab435eb1e1455fcd8ee6cbb83f395e4d537.tar.gz lispish-7beddab435eb1e1455fcd8ee6cbb83f395e4d537.zip | |
test_util.h: add file info to test name
| -rw-r--r-- | test_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util.h b/test_util.h index 1ebf696..f3247aa 100644 --- a/test_util.h +++ b/test_util.h @@ -30,7 +30,7 @@ void test_util_add_test(const char *name, void (*func)()); \ INITIALIZER(test_##NAME##_init) \ { \ - test_util_add_test(#NAME, &test_##NAME); \ + test_util_add_test(__FILE__ "_" #NAME, &test_##NAME); \ } \ static void test_##NAME() |
