We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e990ab commit 20811e3Copy full SHA for 20811e3
tests/utils/fileUtils/src/main.cpp
@@ -185,10 +185,9 @@ class ofApp: public ofxUnitTestsApp{
185
186
ofxTest(std::filesystem::exists(ofFile("test.txt")), "ofFile cast to filesystem::path");
187
ofxTest(std::filesystem::exists(ofDirectory("d1")), "ofDirectory cast to filesystem::path");
188
-
189
190
191
+
+ std::string narrow = ofToDataPath("");
+ ofxTest(std::filesystem::exists(narrow), "narrow paths on windows");
192
193
//========================================================================
194
ofLogNotice() << "";
@@ -289,4 +288,4 @@ int main( ){
289
288
auto app = std::make_shared<ofApp>();
290
ofRunApp(window, app);
291
return ofRunMainLoop();
292
-}
+}
0 commit comments