This commit is contained in:
Alon Zakai 2014-10-30 10:32:43 -07:00
Родитель 0931ac4f48
Коммит 6a6e2b15e7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4386,6 +4386,6 @@ int main(void) {
def test_require(self):
inname = path_from_root('tests', 'hello_world.c')
Building.emcc(inname, output_filename='a.out.js')
output = Popen(NODE_JS + ['-e', 'require("./a.out.js")'], stdout=PIPE, stderr=PIPE).communicate()
output = Popen(listify(NODE_JS) + ['-e', 'require("./a.out.js")'], stdout=PIPE, stderr=PIPE).communicate()
assert output == ('hello, world!\n \n', ''), 'expected no output, got\n===\nSTDOUT\n%s\n===\nSTDERR\n%s\n===\n' % output