Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cwe_checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
cwe_checker
Commits
576c3dd9
Unverified
Commit
576c3dd9
authored
May 05, 2022
by
Enkelmann
Committed by
GitHub
May 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
activate more x86 acceptance tests (#323)
parent
2808701c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
15 deletions
+1
-15
lib.rs
test/src/lib.rs
+1
-15
No files found.
test/src/lib.rs
View file @
576c3dd9
...
...
@@ -244,8 +244,6 @@ mod tests {
mark_architecture_skipped
(
&
mut
tests
,
"ppc64"
);
// Ghidra generates mangled function names here for some reason.
mark_architecture_skipped
(
&
mut
tests
,
"ppc64le"
);
// Ghidra generates mangled function names here for some reason.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
// Loss of stack register value since we do not track pointer alignment yet.
mark_compiler_skipped
(
&
mut
tests
,
"mingw32-gcc"
);
// TODO: Check reason for failure!
for
test_case
in
tests
{
...
...
@@ -271,7 +269,7 @@ mod tests {
mark_skipped
(
&
mut
tests
,
"ppc"
,
"gcc"
);
// Needs tracking of linear dependencies between register values.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
//
Loss of stack register value since we do not track pointer alignment yet.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
//
Unrelated third CWE hit in `__libc_csu_init`
mark_skipped
(
&
mut
tests
,
"x86"
,
"clang"
);
// Unrelated third CWE hit in `__libc_csu_init`
mark_compiler_skipped
(
&
mut
tests
,
"mingw32-gcc"
);
// TODO: Check reason for failure!
...
...
@@ -428,11 +426,6 @@ mod tests {
mark_architecture_skipped
(
&
mut
tests
,
"ppc64"
);
// Ghidra generates mangled function names here for some reason.
mark_architecture_skipped
(
&
mut
tests
,
"ppc64le"
);
// Ghidra generates mangled function names here for some reason.
// The analysis loses track of the stack pointer offset in the main() function
// because of a "INT_AND ESP 0xfffffff0" instruction.
// We would need knowledge about alignment guarantees for the stack pointer at the start of main() to fix this.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
mark_skipped
(
&
mut
tests
,
"x86"
,
"mingw32-gcc"
);
// TODO: Check reason for failure! Probably same as above?
for
test_case
in
tests
{
...
...
@@ -456,11 +449,6 @@ mod tests {
mark_architecture_skipped
(
&
mut
tests
,
"ppc64"
);
// Ghidra generates mangled function names here for some reason.
mark_architecture_skipped
(
&
mut
tests
,
"ppc64le"
);
// Ghidra generates mangled function names here for some reason.
// The analysis loses track of the stack pointer offset in the main() function
// because of a "INT_AND ESP 0xfffffff0" instruction.
// We would need knowledge about alignment guarantees for the stack pointer at the start of main() to fix this.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
mark_skipped
(
&
mut
tests
,
"x86"
,
"mingw32-gcc"
);
// TODO: Check reason for failure! Probably same as above?
for
test_case
in
tests
{
...
...
@@ -639,8 +627,6 @@ mod tests {
mark_skipped
(
&
mut
tests
,
"ppc"
,
"gcc"
);
// Needs tracking of linear dependencies between register values.
mark_skipped
(
&
mut
tests
,
"x86"
,
"gcc"
);
// Loss of stack register value since we do not track pointer alignment yet.
mark_compiler_skipped
(
&
mut
tests
,
"mingw32-gcc"
);
// TODO: Check reason for failure!
for
test_case
in
tests
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment