-
Notifications
You must be signed in to change notification settings - Fork 479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: Add Rust basic testcase #1839
Open
paranlee
wants to merge
1
commit into
namhyung:master
Choose a base branch
from
paranlee:rust-lang-tests
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env python | ||
|
||
from runtest import RustTestBase | ||
|
||
class TestCase(RustTestBase): | ||
def __init__(self): | ||
RustTestBase.__init__(self, 'abc', """ | ||
# DURATION TID FUNCTION | ||
1.852 us [1008471] | getauxval(); | ||
0.204 us [1008471] | getauxval(); | ||
0.203 us [1008471] | getauxval(); | ||
[1008471] | std::rt::lang_start() { | ||
14.260 us [1008471] | poll(); | ||
5.056 us [1008471] | signal(); | ||
2.759 us [1008471] | sigaction(); | ||
2.426 us [1008471] | sigaction(); | ||
2.537 us [1008471] | sigaction(); | ||
2.722 us [1008471] | sigaltstack(); | ||
0.408 us [1008471] | sysconf(); | ||
13.907 us [1008471] | mmap64(); | ||
0.260 us [1008471] | sysconf(); | ||
26.444 us [1008471] | mprotect(); | ||
0.296 us [1008471] | sysconf(); | ||
2.019 us [1008471] | sigaltstack(); | ||
0.185 us [1008471] | sysconf(); | ||
0.278 us [1008471] | pthread_self(); | ||
618.405 us [1008471] | pthread_getattr_np(); | ||
0.389 us [1008471] | pthread_attr_getstack(); | ||
0.371 us [1008471] | pthread_attr_destroy(); | ||
0.166 us [1008471] | malloc(); | ||
0.389 us [1008471] | malloc(); | ||
4.241 us [1008471] | __cxa_thread_atexit_impl(); | ||
[1008471] | std::rt::lang_start::_{{closure}}() { | ||
[1008471] | std::sys_common::backtrace::__rust_begin_short_backtrace() { | ||
[1008471] | core::ops::function::FnOnce::call_once() { | ||
[1008471] | s_abc::main() { | ||
[1008471] | s_abc::a() { | ||
[1008471] | s_abc::b() { | ||
[1008471] | s_abc::c() { | ||
2.389 us [1008471] | getpid(); | ||
4.630 us [1008471] | } /* s_abc::c */ | ||
5.148 us [1008471] | } /* s_abc::b */ | ||
5.500 us [1008471] | } /* s_abc::a */ | ||
5.889 us [1008471] | } /* s_abc::main */ | ||
6.426 us [1008471] | } /* core::ops::function::FnOnce::call_once */ | ||
6.908 us [1008471] | } /* std::sys_common::backtrace::__rust_begin_short_backtrace */ | ||
0.111 us [1008471] | _<()>::report(); | ||
8.037 us [1008471] | } /* std::rt::lang_start::_{{closure}} */ | ||
2.408 us [1008471] | sigaltstack(); | ||
0.259 us [1008471] | sysconf(); | ||
0.167 us [1008471] | sysconf(); | ||
41.648 us [1008471] | munmap(); | ||
780.960 us [1008471] | } /* std::rt::lang_start */ | ||
0.259 us [1008471] | free(); | ||
0.166 us [1008471] | free(); | ||
""") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,8 @@ class TestBase: | |
supported_lang = { | ||
'C': { 'cc': 'gcc', 'flags': 'CFLAGS', 'ext': '.c' }, | ||
'C++': { 'cc': 'g++', 'flags': 'CXXFLAGS', 'ext': '.cpp' }, | ||
# https://github.com/emosenkis/esp-rs/issues/10 | ||
'Rust': { 'cc': 'rustc', 'flags': "+nightly -Z instrument-mcount -C passes=ee-instrument<post-inline> ", 'ext': '.rs' }, | ||
} | ||
|
||
TEST_SUCCESS = 0 | ||
|
@@ -713,6 +715,22 @@ def __init__(self, name, result, lang='Python', cflags='', ldflags='', sort='sim | |
if orig_path != "": | ||
os.environ["PYTHONPATH"] += ':' + orig_path | ||
|
||
class RustTestBase(TestBase): | ||
def __init__(self, name, result, lang='Rust', cflags='', ldflags='', sort='simple', serial=False): | ||
TestBase.__init__(self, name, result, lang, cflags, ldflags, sort, serial) | ||
|
||
def build(self, name, rflags='', ldflags=''): | ||
|
||
lang = TestBase.supported_lang[self.lang] | ||
prog = 't-' + name | ||
src = 's-' + name + ".rs" | ||
rflags = self.supported_lang['Rust']['flags'] | ||
|
||
build_cmd = '%s %s -o %s %s' % (lang['cc'], rflags, prog, src) | ||
|
||
self.pr_debug("build command: %s" % build_cmd) | ||
return self.build_it(build_cmd) | ||
|
||
RED = '\033[1;31m' | ||
GREEN = '\033[1;32m' | ||
YELLOW = '\033[1;33m' | ||
|
@@ -779,6 +797,18 @@ def run_python_case(T, case, timeout): | |
ret = tc.postrun(ret) | ||
return (ret, dif) | ||
|
||
def run_rust_case(T, case, timeout): | ||
tc = T.TestCase() | ||
tc.set_debug(arg.debug) | ||
tc.set_keep(arg.keep) | ||
ret = tc.build(tc.name, "") | ||
ret = tc.prerun(timeout) | ||
dif = '' | ||
if ret == TestBase.TEST_SUCCESS: | ||
ret, dif = tc.run(case, "", arg.diff, timeout) | ||
ret = tc.postrun(ret) | ||
return (ret, dif) | ||
|
||
def run_single_case(case, flags, opts, arg, compilers): | ||
result = [] | ||
timeout = int(arg.timeout) | ||
|
@@ -794,6 +824,11 @@ def run_single_case(case, flags, opts, arg, compilers): | |
result.append((ret, dif)) | ||
continue | ||
|
||
if compiler == 'rustc': | ||
ret, dif = run_rust_case(T, case, timeout) | ||
result.append((ret, dif)) | ||
continue | ||
|
||
for flag in flags: | ||
for opt in opts: | ||
tc = T.TestCase() | ||
|
@@ -909,6 +944,30 @@ def print_python_test_header(ftests): | |
ftests.write(header2 + '\n') | ||
ftests.flush() | ||
|
||
def print_rust_test_header(flags, ftests, compilers): | ||
header1 = '%-24s ' % 'Compiler' | ||
header2 = '%-24s ' % 'Runtime test case' | ||
header3 = '-' * 24 + ':' | ||
empty = ' ' * 100 | ||
|
||
for i, compiler in enumerate(compilers): | ||
if i != 0: | ||
header1 += ' ' | ||
header2 += ' ' | ||
header3 += ' ' | ||
for flag in flags: | ||
# align with optimization flags | ||
header2 += ' ' + flag | ||
header1 += ' ' + compiler | ||
|
||
print("") | ||
print(header1) | ||
print(header2) | ||
print(header3) | ||
ftests.write(header1 + '\n') | ||
ftests.write(header2 + '\n') | ||
ftests.write(header3 + '\n') | ||
ftests.flush() | ||
|
||
def print_test_report(color, shared): | ||
success = shared.stats[TestBase.TEST_SUCCESS] + shared.stats[TestBase.TEST_SUCCESS_FIXED] | ||
|
@@ -961,6 +1020,8 @@ def parse_argument(): | |
help="Hide normal results and print only abnormal results.") | ||
parser.add_argument("-P", "--python", dest='python', action='store_true', | ||
help="Run python test cases instead") | ||
parser.add_argument("-R", "--rust", dest='rust', action='store_true', | ||
help="Run rust test cases instead") | ||
|
||
return parser.parse_args() | ||
|
||
|
@@ -975,6 +1036,8 @@ def parse_argument(): | |
if arg.cases == 'all': | ||
if arg.python: | ||
testcases = glob.glob('p???_*.py') | ||
elif arg.rust: | ||
testcases = glob.glob('r???_*.py') | ||
else: | ||
testcases = glob.glob('t???_*.py') | ||
else: | ||
|
@@ -983,6 +1046,8 @@ def parse_argument(): | |
for case in cases: | ||
if arg.python: | ||
testcases.extend(glob.glob('p*' + case + '*.py')) | ||
elif arg.rust: | ||
testcases.extend(glob.glob('r*' + case + '*.py')) | ||
else: | ||
testcases.extend(glob.glob('t*' + case + '*.py')) | ||
arg.worker = min(arg.worker, len(testcases)) | ||
|
@@ -1028,6 +1093,9 @@ def has_compiler(compiler): | |
compilers = [] | ||
if arg.python: | ||
compilers.append('python') | ||
elif arg.rust: | ||
if has_compiler('rustc') and os.system('rustup default nightly > /dev/null') == 0: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are there nice nightly checking? This because Rust compiler flags |
||
compilers.append('rustc') | ||
elif arg.compiler == 'all': | ||
for compiler in ['gcc', 'clang']: | ||
if has_compiler(compiler): | ||
|
@@ -1082,6 +1150,8 @@ class dotdict(dict): | |
|
||
if arg.python: | ||
print_python_test_header(ftests) | ||
elif arg.rust: | ||
print_rust_test_header(flags, ftests, ['rustc']) | ||
else: | ||
print_test_header(opts, flags, ftests, compilers) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
use std::process; | ||
|
||
fn a() -> u32 { | ||
return b(); | ||
} | ||
|
||
fn b() -> u32 { | ||
return c(); | ||
} | ||
|
||
fn c() -> u32 { | ||
return process::id(); | ||
} | ||
|
||
fn main() { | ||
a(); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is some point of non-deterministic behavior occurred.