diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-02 21:28:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-02 21:28:55 (GMT) |
commit | 8591786867111568298394242a80ddc0a321f5ad (patch) | |
tree | dd9b0251953724c9189d6d7bc103567573dbc6a0 /Source/ctest.cxx | |
parent | c9caf2390c86b98bbeca1e4e52d04fbbb563f083 (diff) | |
download | CMake-8591786867111568298394242a80ddc0a321f5ad.zip CMake-8591786867111568298394242a80ddc0a321f5ad.tar.gz CMake-8591786867111568298394242a80ddc0a321f5ad.tar.bz2 |
ENH: add better error reports in parsing cmake files, like what file has the error
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 8395b1e..24cf666 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -109,7 +109,7 @@ void ctest::ProcessDirectory(int &passed, int &failed) while ( fin ) { - if(cmSystemTools::ParseFunction(fin, name, args)) + if(cmSystemTools::ParseFunction(fin, name, args, "DartTestfile.txt")) { if (name == "SUBDIRS") { |