summaryrefslogtreecommitdiff
path: root/Tests/Dependency
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-11-01 16:57:05 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2004-11-01 16:57:05 -0500
commit160c32e529aef4c685f61216b9d46889a8eae290 (patch)
treee66cfc165cd12e0a4659becd22f34310caeb335f /Tests/Dependency
parent8ef263ff51dc1db067f8a7cee8828ba56a2a13ae (diff)
downloadcmake-160c32e529aef4c685f61216b9d46889a8eae290.tar.gz
BUG: add a test for a single char dir, and fix bug introduced in 1.53, but we still can not handle a space as the start of a directory name
Diffstat (limited to 'Tests/Dependency')
-rw-r--r--Tests/Dependency/1/CMakeLists.txt (renamed from Tests/Dependency/One/CMakeLists.txt)0
-rw-r--r--Tests/Dependency/1/OneSrc.c (renamed from Tests/Dependency/One/OneSrc.c)0
-rw-r--r--Tests/Dependency/CMakeLists.txt9
3 files changed, 5 insertions, 4 deletions
diff --git a/Tests/Dependency/One/CMakeLists.txt b/Tests/Dependency/1/CMakeLists.txt
index b50b2e9c5b..b50b2e9c5b 100644
--- a/Tests/Dependency/One/CMakeLists.txt
+++ b/Tests/Dependency/1/CMakeLists.txt
diff --git a/Tests/Dependency/One/OneSrc.c b/Tests/Dependency/1/OneSrc.c
index 9801c2524f..9801c2524f 100644
--- a/Tests/Dependency/One/OneSrc.c
+++ b/Tests/Dependency/1/OneSrc.c
diff --git a/Tests/Dependency/CMakeLists.txt b/Tests/Dependency/CMakeLists.txt
index 724f109c00..97eab83e91 100644
--- a/Tests/Dependency/CMakeLists.txt
+++ b/Tests/Dependency/CMakeLists.txt
@@ -1,15 +1,16 @@
PROJECT( Dependency )
+# to test directories with only one character One was changed to 1
# There is one executable that depends on eight libraries. The
# system has the following dependency graph:
#
# NoDepA:
# NoDepB: NoDepA
# NoDepC: NoDepA
-# One:
+# 1:
# Two: Three
-# Three: One Four
-# Four: One Two NoDepA
+# Three: 1 Four
+# Four: 1 Two NoDepA
# Five: Two
# SixA: Two Five
# SixB: Four Five
@@ -28,5 +29,5 @@ PROJECT( Dependency )
# in the corresponding CMakeLists.txt just because of commands used.
SUBDIRS( NoDepA NoDepB NoDepC )
-SUBDIRS( One Two Three Four Five Six Seven Eight )
+SUBDIRS( 1 Two Three Four Five Six Seven Eight )
SUBDIRS( Exec Exec2 Exec3 Exec4 )