@@ -267,7 +267,7 @@ int main(int argc, char *argv[])
267
267
if (ele.find (" calibrators" ) != std::string::npos) {
268
268
found = true ;
269
269
std::cout << ele << std::endl;
270
- xsd_cmd = " xmllint --schema ..\ /calibrators.xsd " + ele + " --noout" ;
270
+ xsd_cmd = " xmllint --schema ../calibrators.xsd " + ele + " --noout" ;
271
271
ret = system (xsd_cmd.c_str ());
272
272
if (WEXITSTATUS (ret) != 0 ) {
273
273
ALL_PASSED = false ;
@@ -293,7 +293,7 @@ int main(int argc, char *argv[])
293
293
if (ele.find (" cartesian" ) != std::string::npos) {
294
294
found = true ;
295
295
std::cout << ele << std::endl;
296
- xsd_cmd = " xmllint --schema ..\ /cartesian.xsd " + ele + " --noout" ;
296
+ xsd_cmd = " xmllint --schema ../cartesian.xsd " + ele + " --noout" ;
297
297
ret = system (xsd_cmd.c_str ());
298
298
if (WEXITSTATUS (ret) != 0 ) {
299
299
ALL_PASSED = false ;
@@ -319,7 +319,7 @@ int main(int argc, char *argv[])
319
319
if (ele.find (" wrappers/motorControl" ) != std::string::npos && ele.find (" _wrapper" ) != std::string::npos) {
320
320
found = true ;
321
321
std::cout << ele << std::endl;
322
- xsd_cmd = " xmllint --schema ..\ /wrapper.xsd " + ele + " --noout" ;
322
+ xsd_cmd = " xmllint --schema ../wrapper.xsd " + ele + " --noout" ;
323
323
ret = system (xsd_cmd.c_str ());
324
324
if (WEXITSTATUS (ret) != 0 ) {
325
325
ALL_PASSED = false ;
@@ -345,7 +345,7 @@ int main(int argc, char *argv[])
345
345
if (ele.find (" wrappers/motorControl" ) != std::string::npos && ele.find (" _remapper" ) != std::string::npos) {
346
346
found = true ;
347
347
std::cout << ele << std::endl;
348
- xsd_cmd = " xmllint --schema ..\ /remapper.xsd " + ele + " --noout" ;
348
+ xsd_cmd = " xmllint --schema ../remapper.xsd " + ele + " --noout" ;
349
349
ret = system (xsd_cmd.c_str ());
350
350
if (WEXITSTATUS (ret) != 0 ) {
351
351
ALL_PASSED = false ;
0 commit comments