Skip to content

Commit e66f473

Browse files
authored
Merge pull request #262 from namannimmo10/remove_lf
Remove LFortran related stuff
2 parents 5f56441 + 16932dd commit e66f473

File tree

3 files changed

+7
-61
lines changed

3 files changed

+7
-61
lines changed

GOVERNANCE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# LFortran Governance
1+
# LPython Governance
22

33
## Technical Decisions
44

55
Technical decisions are made by the developer community by discussing at each
6-
Merge Request (MR) and arriving at a consensus. In case of disagreements, the
6+
Pull Request (PR) and arriving at a consensus. In case of disagreements, the
77
project leader (Ondřej Čertík) will facilitate the discussion and help achieve a
88
consensus. If a consensus cannot be achieved, the final decision will be made by
99
the project leader.
1010

1111
## Financial Decisions
1212

13-
Financial decisions are made by Ondřej Čertík and Milan Curcic with the goal to
14-
benefit and be good stewards of the LFortran community.
13+
Financial decisions are made by Ondřej Čertík with the goal to
14+
benefit and be good stewards of the LPython community.

bench.sh

Lines changed: 0 additions & 51 deletions
This file was deleted.

run_tests.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
#!/usr/bin/env python
22

33
import argparse
4-
import hashlib
54
import os
6-
import subprocess
75

86
import toml
97

10-
from compiler_tester.tester import (RunException, run, run_test, color,
11-
style, print_check, fg)
8+
from compiler_tester.tester import run_test, color, style, fg
129

1310
def main():
14-
parser = argparse.ArgumentParser(description="LFortran Test Suite")
11+
parser = argparse.ArgumentParser(description="LPython Test Suite")
1512
parser.add_argument("-u", "--update", action="store_true",
1613
help="update all reference results")
1714
parser.add_argument("-l", "--list", action="store_true",
@@ -29,7 +26,7 @@ def main():
2926
verbose = args.verbose
3027
no_llvm = args.no_llvm
3128

32-
# So that the tests find the `lfortran` executable
29+
# So that the tests find the `lpython` executable
3330
os.environ["PATH"] = os.path.join(os.getcwd(), "src", "bin") \
3431
+ os.pathsep + os.environ["PATH"]
3532

0 commit comments

Comments
 (0)