summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/testIOS.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-08-31 17:00:55 (GMT)
committerBrad King <brad.king@kitware.com>2009-08-31 17:00:55 (GMT)
commit207aab6acf214e05572c772e19a53ad4bff151f0 (patch)
treeba878ff5f922f71223f849cf69fb9a8aee620370 /Source/kwsys/testIOS.cxx
parent6d0b6f2b9e959be073a91d6040810b3057f2b1b1 (diff)
downloadCMake-207aab6acf214e05572c772e19a53ad4bff151f0.zip
CMake-207aab6acf214e05572c772e19a53ad4bff151f0.tar.gz
CMake-207aab6acf214e05572c772e19a53ad4bff151f0.tar.bz2
Define kwsys_ios_binary macro for std::ios::binary
The 'binary' openmode does not exist on all compilers. We define macro <kwsys>_ios_binary, where <kwsys> is the KWSys namespace, to refer to std::ios::binary if it exists and 0 otherwise. Sample usage: kwsys_ios::ifstream fin(fn, kwsys_ios::ios::in | kwsys_ios_binary);
Diffstat (limited to 'Source/kwsys/testIOS.cxx')
-rw-r--r--Source/kwsys/testIOS.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/kwsys/testIOS.cxx b/Source/kwsys/testIOS.cxx
index 5b65d20..2839109 100644
--- a/Source/kwsys/testIOS.cxx
+++ b/Source/kwsys/testIOS.cxx
@@ -1,6 +1,7 @@
#include "kwsysPrivate.h"
#include KWSYS_HEADER(stl/vector)
#include KWSYS_HEADER(ios/sstream)
+#include KWSYS_HEADER(ios/fstream)
#include KWSYS_HEADER(ios/iostream)
// Work-around CMake dependency scanning limitation. This must
@@ -9,6 +10,7 @@
# include "kwsys_stl_string.hxx.in"
# include "kwsys_stl_vector.h.in"
# include "kwsys_ios_sstream.h.in"
+# include "kwsys_ios_fstream.h.in"
# include "kwsys_ios_iostream.h.in"
#endif
@@ -142,6 +144,13 @@ int testIOS(int, char*[])
return 1;
}
+ // Just try to compile this.
+ if(x == 12345)
+ {
+ kwsys_ios::ifstream fin("/does_not_exist",
+ kwsys_ios::ios::in | kwsys_ios_binary);
+ }
+
kwsys_ios::cout << "IOS tests passed" << kwsys_ios::endl;
return 0;
}