mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
467f4aef45
Summary: Ran ./run-tests.py --json and used the following script: import json import subprocess with open("report.json", "r") as f: tests = json.load(f) for name, t in tests.items(): if t["result"] == "success": print("%s successful" % name) subprocess.run("sed -i '/#require py2/d' %s" % name, shell=True) subprocess.run("sed -i '/require.*py2/d' %s" % name, shell=True) Reviewed By: singhsrb Differential Revision: D19664298 fbshipit-source-id: fa67c7c7abd110c9f0df9345daf09f2792aacd44
23 lines
326 B
Raku
23 lines
326 B
Raku
#chg-compatible
|
|
|
|
$ $TESTDIR/seq.py 1 10 > file
|
|
$ cat file
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
$ cat file | f --hexdump
|
|
|
|
0000: 31 0a 32 0a 33 0a 34 0a 35 0a 36 0a 37 0a 38 0a |1.2.3.4.5.6.7.8.|
|
|
0010: 39 0a 31 30 0a |9.10.|
|
|
$ $TESTDIR/seq.py 0 0
|
|
0
|
|
$ $TESTDIR/seq.py 1
|
|
1
|