this repo has no description
1
fork

Configure Feed

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

Fixing selfexec test and more

+6 -6
+5 -4
src/dyld/dyld.cpp
··· 112 112 // The Linux kernel doesn't really support this - it remembers the byte length of the cmdline, which will now decrease. 113 113 // Any app that examines this process' /proc/.../cmdline will from now on see a group of empty arguments after the real arguments. 114 114 // We fix this for NSProcessInfo in libobjcdarwin. 115 - 115 + /* 116 116 uintptr_t totalLen = argv[argc-1] + strlen(argv[argc-1]) + 1 - argv[0]; 117 117 uintptr_t shortenedLen = totalLen - (strlen(argv[0]) + 1); 118 118 ··· 125 125 if (!argv[0][pos]) 126 126 argv[index++] = &argv[0][pos+1]; 127 127 } 128 + */ 128 129 129 - g_argv = argv; 130 - g_argc = argc; 130 + g_argv = argv+1; 131 + g_argc = argc-1; 131 132 g_loader = new MachOLoader; 132 133 133 134 autoSysrootSearch(); 134 135 135 - g_loader->run(*g_mainBinary, argc, argv, envp); 136 + g_loader->run(*g_mainBinary, g_argc, g_argv, envp); 136 137 137 138 delete g_loader; 138 139 g_loader = 0;
+1 -2
tests/boostxml.cpp
··· 5 5 m_xml << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; 6 6 m_xml << "<TestLog>\n"; 7 7 m_xml << "\t<TestSuite name=\"Darling\">\n"; 8 - m_xml << "\t<TestSuite name=\"tests\">\n"; 9 8 } 10 9 11 10 void boostxml::addOK(const std::string& path, int time) ··· 27 26 28 27 std::string boostxml::str() 29 28 { 30 - m_xml << "\t</TestSuite></TestSuite>\n</TestLog>\n"; 29 + m_xml << "\t</TestSuite>\n</TestLog>\n"; 31 30 return m_xml.str(); 32 31 } 33 32
tests/src/ncurses_acs.c tests/src/manual/ncurses_acs.c