summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig/Executable
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-01-17 21:36:04 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-01-17 21:36:04 (GMT)
commitf632d20b6407483fdf2554730fdca5e763f44346 (patch)
tree05864c290e37e6a76008182a605f5962a802d8c6 /Tests/ComplexOneConfig/Executable
parenta2fe7601f03555bb4adb13522f0a8470bfb78811 (diff)
downloadCMake-f632d20b6407483fdf2554730fdca5e763f44346.zip
CMake-f632d20b6407483fdf2554730fdca5e763f44346.tar.gz
CMake-f632d20b6407483fdf2554730fdca5e763f44346.tar.bz2
Fix: displays msg if passed for custom command
Diffstat (limited to 'Tests/ComplexOneConfig/Executable')
-rw-r--r--Tests/ComplexOneConfig/Executable/complex.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx
index 4bbb14b..02aa6dc 100644
--- a/Tests/ComplexOneConfig/Executable/complex.cxx
+++ b/Tests/ComplexOneConfig/Executable/complex.cxx
@@ -121,9 +121,13 @@ int main()
{
Failed("Unable to remove " BINARY_DIR "/postbuild.txt (does not imply that this test failed, but it *will* be corrupted thereafter if this file is not removed).");
}
+ else
+ {
+ Passed("Find and remove " BINARY_DIR "/postbuild.txt (created as a post-build custom command for the shared lib).");
+ }
}
- std::cout << "Passed:" << passed << "\n";
+ std::cout << "Passed: " << passed << "\n";
if(failed)
{
std::cout << "Failed: " << failed << "\n";