diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-10 14:05:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-10 14:05:52 (GMT) |
commit | 1f286c067f564372afc10b7d8d294aa3350bc150 (patch) | |
tree | 658e9c9a836d75f823d188e086301ac6571243dc /Tests/BuildDepends/Project | |
parent | 3e3413dadc3986d2f35cf6a8233125225bee2455 (diff) | |
download | CMake-1f286c067f564372afc10b7d8d294aa3350bc150.zip CMake-1f286c067f564372afc10b7d8d294aa3350bc150.tar.gz CMake-1f286c067f564372afc10b7d8d294aa3350bc150.tar.bz2 |
ENH: add test for build depends
Diffstat (limited to 'Tests/BuildDepends/Project')
-rw-r--r-- | Tests/BuildDepends/Project/bar.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/BuildDepends/Project/bar.c b/Tests/BuildDepends/Project/bar.c index d32ea2e..4764af5 100644 --- a/Tests/BuildDepends/Project/bar.c +++ b/Tests/BuildDepends/Project/bar.c @@ -3,6 +3,9 @@ const char* foo(); int main() { - printf("%s", foo()); + int i; + printf("%s\n", foo()); + fflush(stdout); + for(;;); return 0; } |