Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
50 lines (40 loc) · 1.34 KB

File metadata and controls

executable file
·
50 lines (40 loc) · 1.34 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python2
'''
simple tool to run emcc and clang on C testcases each in a separate subdir of the current dir
'''
import os, sys
__rootpath__ = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
def path_from_root(*pathelems):
return os.path.join(__rootpath__, *pathelems)
sys.path += [path_from_root('')]
import tools.shared
from tools.shared import *
curr = os.getcwd()
for d in os.listdir(curr):
print '(' + d + ') ',
os.chdir(curr)
if os.path.isdir(d):
os.chdir(d)
for c in os.listdir('.'):
if c.endswith('.c'):
execute([EMCC, c, '-O2', '--embed-file', 'input.txt'])
js = jsrun.run_js('a.out.js', filter(lambda x: x != '-w', SPIDERMONKEY_ENGINE), stdout=PIPE)
execute([CLANG_CC, '-m32', c])
n1 = execute(['./a.out'], stdout=PIPE)[0]
execute([CLANG_CC, '-m32', c, '-O2'])
n2 = execute(['./a.out'], stdout=PIPE)[0]
execute(['gcc', c, '-m32'])
n3 = execute(['./a.out'], stdout=PIPE)[0]
if js == n1:
print 'ok'
elif js == n2:
print 'emcc and clang -O2 both equally wrong'
elif js == n3:
print 'emcc agrees with gcc, so probably ok'
else:
print
print 'js ', js,
print 'c0 ', n1,
print 'c2 ', n2,
print 'g ', n3,
print 'fail!!!', d
Morty Proxy This is a proxified and sanitized view of the page, visit original site.