Skip to content

Commit 413ec7f

Browse files
committed
feedback
1 parent 19e3da4 commit 413ec7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_other.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8727,10 +8727,11 @@ def test_archive_no_index(self):
87278727
self.assertContained('libfoo.a: archive has no index; run ranlib to add one', stderr)
87288728
# The default behavior is to add archive indexes automatically.
87298729
run_process([PYTHON, EMCC, 'libfoo.a', 'hello_world.o'])
8730-
run_process([PYTHON, EMCC, 'libfoo.a', 'hello_world.o'])
87318730

87328731
def test_archive_non_objects(self):
87338732
create_test_file('file.txt', 'test file')
8733+
# llvm-nm has issues with files that start with two or more null bytes since it thinks they
8734+
# are COFF files. Ensure that we correctly ignore such files when we process them.
87348735
create_test_file('zeros.bin', '\0\0\0\0')
87358736
run_process([PYTHON, EMCC, '-c', path_from_root('tests', 'hello_world.c')])
87368737
# No index added.

0 commit comments

Comments
 (0)