Skip to content

Commit

Permalink
Revert "TEST: Indent all AST and ASR tests"
Browse files Browse the repository at this point in the history
This reverts commit 9938e6c.
  • Loading branch information
Shaikh-Ubaid committed May 11, 2023
1 parent d2420d7 commit bbcec15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def is_included(backend):
run_test(
filename,
"ast",
"lpython --show-ast --indent --no-color {infile} -o {outfile}",
"lpython --show-ast --no-color {infile} -o {outfile}",
filename,
update_reference,
extra_args)
Expand All @@ -67,7 +67,7 @@ def is_included(backend):
run_test(
filename,
"ast_new",
"lpython --show-ast --indent --new-parser --no-color {infile} -o {outfile}",
"lpython --show-ast --new-parser --no-color {infile} -o {outfile}",
filename,
update_reference,
extra_args)
Expand All @@ -76,7 +76,7 @@ def is_included(backend):
run_test(
filename,
"asr",
"lpython --show-asr --indent --no-color {infile} -o {outfile}",
"lpython --show-asr --no-color {infile} -o {outfile}",
filename,
update_reference,
extra_args)
Expand All @@ -92,7 +92,7 @@ def is_included(backend):

if pass_ is not None:
cmd = "lpython --pass=" + pass_ + \
" --show-asr --indent --no-color {infile} -o {outfile}"
" --show-asr --no-color {infile} -o {outfile}"
run_test(filename, "pass_{}".format(pass_), cmd,
filename, update_reference, extra_args)

Expand Down

0 comments on commit bbcec15

Please sign in to comment.