https://github.com/reo7sp/contesttest
Makes running your programs made for programming contests more pleasant
https://github.com/reo7sp/contesttest
programming-contests
Last synced: 7 months ago
JSON representation
Makes running your programs made for programming contests more pleasant
- Host: GitHub
- URL: https://github.com/reo7sp/contesttest
- Owner: reo7sp
- License: mit
- Created: 2015-12-30T13:03:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-07T13:09:29.000Z (about 10 years ago)
- Last Synced: 2024-04-18T18:12:05.168Z (almost 2 years ago)
- Topics: programming-contests
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# contesttest
Makes running your programs made for programming contests more pleasant.
```
Usage: contesttest SCRIPTNAME [ACTION] [TESTSDIR]
Actions:
t, test Compiles and runs your program and then automatically provides tests to stdin. This is the default action if no one suplied.
r, run Compiles and runs your program.
d, debug Compiles the program and then runs the debugger.
Test format:
TESTSDIR/SCRIPTNAME/f.in - it's where test's input is kept,
TESTSDIR/SCRIPTNAME/f.out - it's where test's answer is kept
where f can be any string.
Supported languages:
C++, C, Python, Java.
If you need a language which is not listed here, write an issue or send a pull request at the github page.
Additional notes:
If pypy is installed, contesttest will use pypy for python programs. To prohibit it set the enviroment variable NOPYPY to 1.
```