diff options
Diffstat (limited to 'tests/trig/CMakeLists.txt')
-rw-r--r-- | tests/trig/CMakeLists.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/trig/CMakeLists.txt b/tests/trig/CMakeLists.txt new file mode 100644 index 0000000..b85d90d --- /dev/null +++ b/tests/trig/CMakeLists.txt @@ -0,0 +1,37 @@ +# raptor/tests/trig/CMakeLists.txt +# +# Original listfile by Daniel Richard G. <skunk@iSKUNK.ORG> +# This file is in the public domain. +# + +RAPPER_TEST(trig.example1 + "${RAPPER} -q -i trig -o nquads ${CMAKE_CURRENT_SOURCE_DIR}/example1.trig http://example.librdf.org/example1.trig" + example1.res + ${CMAKE_CURRENT_SOURCE_DIR}/example1.out +) + +RAPPER_TEST(trig.example2 + "${RAPPER} -q -i trig -o nquads ${CMAKE_CURRENT_SOURCE_DIR}/example2.trig http://example.librdf.org/example2.trig" + example2.res + ${CMAKE_CURRENT_SOURCE_DIR}/example2.out +) + +RAPPER_TEST(trig.example3 + "${RAPPER} -q -i trig -o nquads ${CMAKE_CURRENT_SOURCE_DIR}/example3.trig http://example.librdf.org/example3.trig" + example3.res + ${CMAKE_CURRENT_SOURCE_DIR}/example3.out +) + +RAPPER_TEST(trig.bug370 + "${RAPPER} -q -i trig -o nquads ${CMAKE_CURRENT_SOURCE_DIR}/bug370.trig http://example.librdf.org/bug370.trig" + bug370.res + ${CMAKE_CURRENT_SOURCE_DIR}/bug370.out +) + +RAPPER_TEST(trig.bug451 + "${RAPPER} -q -i trig -o nquads ${CMAKE_CURRENT_SOURCE_DIR}/bug451.trig http://example.librdf.org/bug451.trig" + bug451.res + ${CMAKE_CURRENT_SOURCE_DIR}/bug451.out +) + +# end raptor/tests/trig/CMakeLists.txt |