File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -560,6 +560,10 @@ status="$?"
560
560
echo " Expected exit code 0 from 'patch' tool, but got $status "
561
561
echo " --- 'patch' output ---"
562
562
echo " $patch_out "
563
+ echo " Patch was"
564
+ echo " ------------------"
565
+ cat " ${PATCH_FILE} "
566
+ echo " ------------------"
563
567
exit 1
564
568
}
565
569
@@ -956,32 +960,32 @@ echo "=== Test --autofix=generate-waiver --autofix_output_file: run linter on a
956
960
TEST_FILE=" ${TEST_TMPDIR} /generate-waiver.sv"
957
961
cat > " ${TEST_FILE} " << EOF
958
962
module m;
959
- wire x = y;
963
+ wire x = y;
960
964
always @* x=y;
961
965
always @* x=y;
962
966
endmodule
963
967
964
968
965
969
module m;
966
970
967
- begin
968
- wire x=y;
971
+ begin
972
+ wire x=y;
969
973
end
970
- begin
971
- wire s=y;
974
+ begin
975
+ wire s=y;
972
976
end
973
977
endmodule
974
978
975
979
976
980
module m;
977
- wire x = y;
981
+ wire x = y;
978
982
always @* x=y;
979
983
always @* x=y;
980
984
endmodule
981
985
EOF
982
986
983
987
984
- " $lint_tool " " ${TEST_FILE} " --autofix=generate-waiver --autofix_output_file " ${MY_OUTPUT_FILE} " & > /dev/null
988
+ " $lint_tool " " ${TEST_FILE} " --autofix=generate-waiver --autofix_output_file " ${MY_OUTPUT_FILE} " & > /dev/null
985
989
status=" $? "
986
990
[[ $status == 1 ]] || {
987
991
echo " Expected exit code 1, but got $status "
You can’t perform that action at this time.
0 commit comments