-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassed
More file actions
executable file
·61 lines (52 loc) · 1.9 KB
/
passed
File metadata and controls
executable file
·61 lines (52 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
echo "BOOLEANS"
for file in python-reference/bool/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "BUILTINS"
for file in python-reference/builtin/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "DICT"
echo "bool"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < python-reference/dict/dict-bool.py
echo "contains"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < python-reference/dict/dict-contains.py
echo "get"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < python-reference/dict/dict-get.py
echo "update"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < python-reference/dict/dict-clear.py
echo "EXCEPTIONS"
for file in python-reference/exceptions/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "LISTS"
for file in python-reference/lists/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "SCOPE"
for file in python-reference/scope/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "TUPLE"
for file in python-reference/tuple/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done
echo "TYPES"
for file in python-reference/types/*.py
do
echo "${file}"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done