Skip to content

Commit

Permalink
Merge pull request lcompilers#1428 from Shaikh-Ubaid/minor_fixes
Browse files Browse the repository at this point in the history
Minor fixes/improvements
  • Loading branch information
certik committed Jan 14, 2023
2 parents 1397347 + 5ef96d0 commit d3a947f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 60 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Run integration tests:

```bash
cd integration_tests
./run_tests.sh
./run_tests.py
```

### Speed up Integration Test on Macs
Expand Down
4 changes: 2 additions & 2 deletions ci/test.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ src/bin/lpython --show-cpp tests/doconcurrentloop_01.py
if $WIN != "1":
python run_tests.py
cd integration_tests
python run_tests_new.py -j16 -b llvm cpython c wasm
python run_tests.py -j16 -b llvm cpython c wasm

if $(uname).strip() == "Linux":
python run_tests_new.py -j16 -b x86 wasm_x86 wasm_x64
python run_tests.py -j16 -b x86 wasm_x86 wasm_x64
File renamed without changes.
56 changes: 0 additions & 56 deletions integration_tests/run_tests.sh

This file was deleted.

2 changes: 1 addition & 1 deletion src/bin/lpython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ int main(int argc, char *argv[])

if (compiler_options.arg_o == "") {
if (backend == Backend::wasm) {
err = system(("js " + outfile +".js").c_str());
err = system(("node " + outfile +".js").c_str());
} else {
if (compiler_options.platform == LCompilers::Platform::Windows) {
return system(outfile.c_str());
Expand Down

0 comments on commit d3a947f

Please sign in to comment.