summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-01-09 10:25:54 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-01-09 10:25:54 (GMT)
commit9cc4cdc7a79597df8eaa7dbb441197b574782707 (patch)
tree99a5855e3477afbcb039f07420c223bf0db2408c /test/src
parent0e0b1e365842f62c714247c32692606d0ec7b21a (diff)
downloaduscxml-9cc4cdc7a79597df8eaa7dbb441197b574782707.zip
uscxml-9cc4cdc7a79597df8eaa7dbb441197b574782707.tar.gz
uscxml-9cc4cdc7a79597df8eaa7dbb441197b574782707.tar.bz2
Fixed windows build and excluded MacOS/gcc
Diffstat (limited to 'test/src')
-rw-r--r--test/src/test-url.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/test-url.cpp b/test/src/test-url.cpp
index c1a840f..51fb545 100644
--- a/test/src/test-url.cpp
+++ b/test/src/test-url.cpp
@@ -51,7 +51,7 @@ bool canResolve(const std::string& url) {
bool dirExists(const std::string& path) {
#ifdef _WIN32
- DWORD ftyp = GetFileAttributesA(dirName_in.c_str());
+ DWORD ftyp = GetFileAttributesA(path.c_str());
if (ftyp == INVALID_FILE_ATTRIBUTES)
return false; //something is wrong with your path!