]> granicus.if.org Git - graphviz/commitdiff
Move unit test from `tests/` to `tests/unit_tests`
authorErwin Janssen <erwinjanssen@outlook.com>
Thu, 29 Sep 2016 12:03:06 +0000 (14:03 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Thu, 27 Oct 2016 22:56:31 +0000 (00:56 +0200)
Moving the unit tests to a seperate folder in tests, allows the
regression tests to be placed in `tests/regressions_tests`.

.gitignore
configure.ac
tests/Makefile.am
tests/unit_tests/Makefile.am [new file with mode: 0644]
tests/unit_tests/lib/Makefile.am [moved from tests/lib/Makefile.am with 100% similarity]
tests/unit_tests/lib/common/Makefile.am [moved from tests/lib/common/Makefile.am with 100% similarity]
tests/unit_tests/lib/common/command_line.c [moved from tests/lib/common/command_line.c with 100% similarity]

index fe4ecf32f46c9af973cf4509c4080134fb8269f3..cff4c79c7a67ed24ca77882cd51d5e54fb73d277 100644 (file)
@@ -203,7 +203,7 @@ tests/**/*.log
 tests/**/*.trs
 
 ## Binaries
-tests/lib/common/command_line
+tests/unit_tests/lib/common/command_line
 
 # Folders generated by Visual Studio builds
 **/Debug/**
index b484eb68cbb72cbecc4d4378cbe96357bab056ec..e8a799c4b45c948898bfd655f2636dfa4004d149 100644 (file)
@@ -3222,8 +3222,9 @@ AC_CONFIG_FILES(Makefile
        tclpkg/gv/META.gv
        rtest/Makefile
   tests/Makefile
-  tests/lib/Makefile
-  tests/lib/common/Makefile
+  tests/unit_tests/Makefile
+  tests/unit_tests/lib/Makefile
+  tests/unit_tests/lib/common/Makefile
        share/Makefile
        share/examples/Makefile
        share/gui/Makefile
index 92600a70791f83381e6007d28029715f48fed517..8e4e403da3258071e4e9cec7ee88f5f13b45882c 100644 (file)
@@ -1,4 +1,4 @@
 # $Id$ $Revision$
 ## Process this file with automake to produce Makefile.in
 
-SUBDIRS = lib 
+SUBDIRS = unit_tests
diff --git a/tests/unit_tests/Makefile.am b/tests/unit_tests/Makefile.am
new file mode 100644 (file)
index 0000000..92600a7
--- /dev/null
@@ -0,0 +1,4 @@
+# $Id$ $Revision$
+## Process this file with automake to produce Makefile.in
+
+SUBDIRS = lib