diff options
author | Brad King <brad.king@kitware.com> | 2008-02-06 19:52:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-06 19:52:12 (GMT) |
commit | 1cba430d1bcbf62f0d012cd2f243d57c54881c07 (patch) | |
tree | f78d20d94730611c36b1bbd9cc3244cedf5ef233 /Tests/Dependency/Case2/foo1.c | |
parent | 0cb622a28b3d19e9681a315b5690c8aa496e83a4 (diff) | |
download | CMake-1cba430d1bcbf62f0d012cd2f243d57c54881c07.zip CMake-1cba430d1bcbf62f0d012cd2f243d57c54881c07.tar.gz CMake-1cba430d1bcbf62f0d012cd2f243d57c54881c07.tar.bz2 |
ENH: Combine all dependency* tests into one Dependency test. Add more difficult test cases.
Diffstat (limited to 'Tests/Dependency/Case2/foo1.c')
-rw-r--r-- | Tests/Dependency/Case2/foo1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/Dependency/Case2/foo1.c b/Tests/Dependency/Case2/foo1.c new file mode 100644 index 0000000..0dbf426 --- /dev/null +++ b/Tests/Dependency/Case2/foo1.c @@ -0,0 +1,3 @@ +extern int foo2(void); +int foo1(void) { return foo2(); } +int foo1_from_foo3(void) { return 0; } |