Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
exchain
nebula
Commits
cc22e243
Unverified
Commit
cc22e243
authored
Nov 01, 2024
by
Inphi
Committed by
GitHub
Nov 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cannon: Avoid running expensive program tests in merge queue (#12779)
parent
28da3f80
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
evm_common_test.go
cannon/mipsevm/tests/evm_common_test.go
+12
-0
No files found.
cannon/mipsevm/tests/evm_common_test.go
View file @
cc22e243
...
@@ -875,6 +875,10 @@ func TestEVMFault(t *testing.T) {
...
@@ -875,6 +875,10 @@ func TestEVMFault(t *testing.T) {
}
}
func
TestHelloEVM
(
t
*
testing
.
T
)
{
func
TestHelloEVM
(
t
*
testing
.
T
)
{
if
os
.
Getenv
(
"SKIP_SLOW_TESTS"
)
==
"true"
{
t
.
Skip
(
"Skipping slow test because SKIP_SLOW_TESTS is enabled"
)
}
t
.
Parallel
()
t
.
Parallel
()
versions
:=
GetMipsVersionTestCases
(
t
)
versions
:=
GetMipsVersionTestCases
(
t
)
...
@@ -918,6 +922,10 @@ func TestHelloEVM(t *testing.T) {
...
@@ -918,6 +922,10 @@ func TestHelloEVM(t *testing.T) {
}
}
func
TestClaimEVM
(
t
*
testing
.
T
)
{
func
TestClaimEVM
(
t
*
testing
.
T
)
{
if
os
.
Getenv
(
"SKIP_SLOW_TESTS"
)
==
"true"
{
t
.
Skip
(
"Skipping slow test because SKIP_SLOW_TESTS is enabled"
)
}
t
.
Parallel
()
t
.
Parallel
()
versions
:=
GetMipsVersionTestCases
(
t
)
versions
:=
GetMipsVersionTestCases
(
t
)
...
@@ -959,6 +967,10 @@ func TestClaimEVM(t *testing.T) {
...
@@ -959,6 +967,10 @@ func TestClaimEVM(t *testing.T) {
}
}
func
TestEntryEVM
(
t
*
testing
.
T
)
{
func
TestEntryEVM
(
t
*
testing
.
T
)
{
if
os
.
Getenv
(
"SKIP_SLOW_TESTS"
)
==
"true"
{
t
.
Skip
(
"Skipping slow test because SKIP_SLOW_TESTS is enabled"
)
}
t
.
Parallel
()
t
.
Parallel
()
versions
:=
GetMipsVersionTestCases
(
t
)
versions
:=
GetMipsVersionTestCases
(
t
)
...
...
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