Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions GOVERNANCE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# LFortran Governance
# LPython Governance

## Technical Decisions

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

## Financial Decisions

Financial decisions are made by Ondřej Čertík and Milan Curcic with the goal to
benefit and be good stewards of the LFortran community.
Financial decisions are made by Ondřej Čertík with the goal to
benefit and be good stewards of the LPython community.
51 changes: 0 additions & 51 deletions bench.sh

This file was deleted.

9 changes: 3 additions & 6 deletions run_tests.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
#!/usr/bin/env python

import argparse
import hashlib
import os
import subprocess

import toml

from compiler_tester.tester import (RunException, run, run_test, color,
style, print_check, fg)
from compiler_tester.tester import run_test, color, style, fg

def main():
parser = argparse.ArgumentParser(description="LFortran Test Suite")
parser = argparse.ArgumentParser(description="LPython Test Suite")
parser.add_argument("-u", "--update", action="store_true",
help="update all reference results")
parser.add_argument("-l", "--list", action="store_true",
Expand All @@ -29,7 +26,7 @@ def main():
verbose = args.verbose
no_llvm = args.no_llvm

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

Expand Down