the list file existing or not should not fail the copy instead fail the nasm compiling itself so nasm -v is excused
diff --git a/test/nasm b/test/nasm
index e9488cd..d7b6ec3 100755
--- a/test/nasm
+++ b/test/nasm
@@ -34,4 +34,6 @@
 rm -f "$ofile"
 "$projnasm_nasm1" "${param1[@]}" || exit $?
 "$projnasm_nasm2" "${param2[@]}" || exit $?
-cp -f "$ofile.1" "$ofile"
+if [ -f $ofile.1 ]; then
+	cp -f "$ofile.1" "$ofile"
+fi