Skip to content
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

[CI] Ubuntu 24.04 and 22.04 part 4/? #2029

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/lib/stage-test-direct.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ stage('test-direct') {
# memcslap populates server but doesn't report errors, use
# memcached-tool for this (must return two lines of stats)
memcslap --servers=127.0.0.1 --concurrency=8
src/scripts/memcached-tool 127.0.0.1 | wc -l | grep -w "2"
test "$(src/scripts/memcached-tool 127.0.0.1 | wc -l)" -ge 2
'''
}
timeout(time: 10, unit: 'MINUTES') {
Expand Down
2 changes: 1 addition & 1 deletion .ci/lib/stage-test-sgx.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ stage('test-sgx') {
# memcslap populates server but doesn't report errors, use
# memcached-tool for this (must return two lines of stats)
memcslap --servers=127.0.0.1 --concurrency=8
src/scripts/memcached-tool 127.0.0.1 | wc -l | grep -w "2"
test "$(src/scripts/memcached-tool 127.0.0.1 | wc -l)" -ge 2
'''
}
timeout(time: 15, unit: 'MINUTES') {
Expand Down
17 changes: 15 additions & 2 deletions libos/test/ltp/ltp.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,16 @@ skip = yes
[clock_gettime03]
skip = yes

# test #1 calls __vdso__clock_gettime(CLOCK_REALTIME) and checks if the
# difference is <= 5 ms, which it might not be on a VM
[clock_gettime04]
must-pass =
2
3
4
5
6

# test 10: EOPNOTSUPP expected on CLOCK_THREAD_CPUTIME_ID
[clock_nanosleep01]
timeout = 40
Expand Down Expand Up @@ -247,9 +257,9 @@ skip = yes
[dirtyc0w]
skip = yes

# very long test, does thousands of forks
# very long test, does thousands of forks, unreliable
[epoll01]
timeout = 600
skip = yes

# tries to open /proc/1/stat, which is not implemented in Gramine
[epoll_pwait01]
Expand Down Expand Up @@ -1373,6 +1383,9 @@ skip = yes
[pipe03]
skip = yes

[pipe04]
timeout = 60

[pipe07]
skip = yes

Expand Down