@@ -267,7 +267,7 @@ int main(int argc, char *argv[])
267267 if (ele.find (" calibrators" ) != std::string::npos) {
268268 found = true ;
269269 std::cout << ele << std::endl;
270- xsd_cmd = " xmllint --schema ..\ /calibrators.xsd " + ele + " --noout" ;
270+ xsd_cmd = " xmllint --schema ../calibrators.xsd " + ele + " --noout" ;
271271 ret = system (xsd_cmd.c_str ());
272272 if (WEXITSTATUS (ret) != 0 ) {
273273 ALL_PASSED = false ;
@@ -293,7 +293,7 @@ int main(int argc, char *argv[])
293293 if (ele.find (" cartesian" ) != std::string::npos) {
294294 found = true ;
295295 std::cout << ele << std::endl;
296- xsd_cmd = " xmllint --schema ..\ /cartesian.xsd " + ele + " --noout" ;
296+ xsd_cmd = " xmllint --schema ../cartesian.xsd " + ele + " --noout" ;
297297 ret = system (xsd_cmd.c_str ());
298298 if (WEXITSTATUS (ret) != 0 ) {
299299 ALL_PASSED = false ;
@@ -319,7 +319,7 @@ int main(int argc, char *argv[])
319319 if (ele.find (" wrappers/motorControl" ) != std::string::npos && ele.find (" _wrapper" ) != std::string::npos) {
320320 found = true ;
321321 std::cout << ele << std::endl;
322- xsd_cmd = " xmllint --schema ..\ /wrapper.xsd " + ele + " --noout" ;
322+ xsd_cmd = " xmllint --schema ../wrapper.xsd " + ele + " --noout" ;
323323 ret = system (xsd_cmd.c_str ());
324324 if (WEXITSTATUS (ret) != 0 ) {
325325 ALL_PASSED = false ;
@@ -345,7 +345,7 @@ int main(int argc, char *argv[])
345345 if (ele.find (" wrappers/motorControl" ) != std::string::npos && ele.find (" _remapper" ) != std::string::npos) {
346346 found = true ;
347347 std::cout << ele << std::endl;
348- xsd_cmd = " xmllint --schema ..\ /remapper.xsd " + ele + " --noout" ;
348+ xsd_cmd = " xmllint --schema ../remapper.xsd " + ele + " --noout" ;
349349 ret = system (xsd_cmd.c_str ());
350350 if (WEXITSTATUS (ret) != 0 ) {
351351 ALL_PASSED = false ;
0 commit comments