diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-30 09:38:00 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-30 09:38:00 -0400 |
commit | 5898e7d5bef98c2c7515fe23c4160ad3dbbaf6ad (patch) | |
tree | 71e5c05452e0a152d575052d0c3c3fad4867ded7 /tests | |
parent | 5f29a25a76f9dfb06a97e921f1d428c683970831 (diff) | |
download | stasis-5898e7d5bef98c2c7515fe23c4160ad3dbbaf6ad.tar.gz |
Update location of test data
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_junitxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_junitxml.c b/tests/test_junitxml.c index 7111249..e222b56 100644 --- a/tests/test_junitxml.c +++ b/tests/test_junitxml.c @@ -3,7 +3,7 @@ void test_junitxml_testsuite_read() { struct JUNIT_Testsuite *testsuite; - STASIS_ASSERT_FATAL((testsuite = junitxml_testsuite_read("result.xml")) != NULL, "failed to load testsuite data"); + STASIS_ASSERT_FATAL((testsuite = junitxml_testsuite_read("data/result.xml")) != NULL, "failed to load testsuite data"); STASIS_ASSERT(testsuite->name != NULL, "Test suite must be named"); STASIS_ASSERT(testsuite->skipped > 0, "missed skipped tests"); STASIS_ASSERT(testsuite->failures > 0, "missed failed tests"); @@ -44,7 +44,7 @@ void test_junitxml_testsuite_read() { void test_junitxml_testsuite_read_error() { struct JUNIT_Testsuite *testsuite; - STASIS_ASSERT_FATAL((testsuite = junitxml_testsuite_read("result_error.xml")) != NULL, "failed to load testsuite data"); + STASIS_ASSERT_FATAL((testsuite = junitxml_testsuite_read("data/result_error.xml")) != NULL, "failed to load testsuite data"); STASIS_ASSERT(testsuite->name != NULL, "test suite must be named"); STASIS_ASSERT(testsuite->skipped == 0, "should not have any skipped tests"); |