diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-05-01 01:22:46 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-05-01 01:22:46 -0400 |
commit | 4a809bbcf3ff97c2e666fd3faab5e178be20ab57 (patch) | |
tree | 9e555a51c61675f1f3861058380f27d944cc3baa /tests/test_rpath_rpath_get.c | |
parent | f57de6e0144fcd19fa711ef28f4ca0b5239a5223 (diff) | |
download | spmc-4a809bbcf3ff97c2e666fd3faab5e178be20ab57.tar.gz |
Add mock_image function
Diffstat (limited to 'tests/test_rpath_rpath_get.c')
-rw-r--r-- | tests/test_rpath_rpath_get.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test_rpath_rpath_get.c b/tests/test_rpath_rpath_get.c new file mode 100644 index 0000000..17e7e7c --- /dev/null +++ b/tests/test_rpath_rpath_get.c @@ -0,0 +1,15 @@ +#include "spm.h" +#include "framework.h" + +const char *testFmt = "returned '%s', expected '%s'\n"; +struct TestCase testCase[] = { + {}, +}; +size_t numCases = sizeof(testCase) / sizeof(struct TestCase); + +int main(int argc, char *argv[]) { + for (size_t i = 0; i < numCases; i++) { + // myassert() + } + return 0; +}
\ No newline at end of file |