this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

More tests stuff

+1 -5
-4
CMakeLists.txt
··· 89 89 add_subdirectory(src/crash) 90 90 endif(NOT DEFINED SUFFIX OR SUFFIX STREQUAL "64") 91 91 92 - if (WITH_TESTS) 93 - add_subdirectory(tests) 94 - endif (WITH_TESTS) 95 - 96 92 add_subdirectory(src/util) 97 93 add_subdirectory(src/libmach-o) 98 94 add_subdirectory(src/dyld)
+1 -1
tests/src/bin/runtests.py
··· 96 96 97 97 errorNode = doc.createElement("Error") 98 98 errorNode.setAttribute("file", sourcesDir + '/' + test['test']) 99 - errorNode.setAttribute("line", 0) 99 + errorNode.setAttribute("line", "0") 100 100 errorNode.appendChild(doc.createTextNode(test['output'])) 101 101 102 102 testNode.appendChild(errorNode)