gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/perf/BUILD (about) 1 load("//test/runner:defs.bzl", "syscall_test") 2 load("//tools:defs.bzl", "more_shards") 3 4 package( 5 default_applicable_licenses = ["//:license"], 6 licenses = ["notice"], 7 ) 8 9 syscall_test( 10 debug = False, 11 # Takes too long to run with S/R. 12 save = False, 13 test = "//test/perf/linux:clock_getres_benchmark", 14 ) 15 16 syscall_test( 17 debug = False, 18 # Takes too long to run with S/R. 19 save = False, 20 test = "//test/perf/linux:clock_gettime_benchmark", 21 ) 22 23 syscall_test( 24 debug = False, 25 # Takes too long to run with S/R. 26 save = False, 27 test = "//test/perf/linux:death_benchmark", 28 ) 29 30 syscall_test( 31 debug = False, 32 # Takes too long to run with S/R. 33 save = False, 34 test = "//test/perf/linux:epoll_benchmark", 35 ) 36 37 syscall_test( 38 debug = False, 39 # Takes too long to run with S/R. 40 save = False, 41 test = "//test/perf/linux:poll_benchmark", 42 ) 43 44 syscall_test( 45 debug = False, 46 # Takes too long to run with S/R. 47 save = False, 48 test = "//test/perf/linux:select_benchmark", 49 ) 50 51 syscall_test( 52 size = "large", 53 debug = False, 54 # Takes too long to run with S/R. 55 save = False, 56 test = "//test/perf/linux:fork_benchmark", 57 ) 58 59 syscall_test( 60 size = "large", 61 timeout = "long", 62 debug = False, 63 # Takes too long to run with S/R. 64 save = False, 65 test = "//test/perf/linux:futex_benchmark", 66 ) 67 68 syscall_test( 69 size = "large", 70 debug = False, 71 # Takes too long to run with S/R. 72 save = False, 73 shard_count = more_shards, 74 tags = ["nogotsan"], 75 test = "//test/perf/linux:getdents_benchmark", 76 ) 77 78 syscall_test( 79 size = "large", 80 debug = False, 81 # Takes too long to run with S/R. 82 save = False, 83 test = "//test/perf/linux:getpid_benchmark", 84 ) 85 86 syscall_test( 87 size = "large", 88 debug = False, 89 # Takes too long to run with S/R. 90 save = False, 91 tags = ["nogotsan"], 92 test = "//test/perf/linux:gettid_benchmark", 93 ) 94 95 syscall_test( 96 size = "large", 97 debug = False, 98 # Takes too long to run with S/R. 99 save = False, 100 test = "//test/perf/linux:mapping_benchmark", 101 ) 102 103 syscall_test( 104 size = "large", 105 add_overlay = True, 106 debug = False, 107 # Takes too long to run with S/R. 108 save = False, 109 test = "//test/perf/linux:open_benchmark", 110 ) 111 112 syscall_test( 113 size = "large", 114 add_overlay = True, 115 debug = False, 116 # Takes too long to run with S/R. 117 save = False, 118 test = "//test/perf/linux:open_read_close_benchmark", 119 ) 120 121 syscall_test( 122 size = "large", 123 add_overlay = True, 124 debug = False, 125 # Takes too long to run with S/R. 126 save = False, 127 test = "//test/perf/linux:dup_benchmark", 128 ) 129 130 syscall_test( 131 debug = False, 132 # Takes too long to run with S/R. 133 save = False, 134 test = "//test/perf/linux:pipe_benchmark", 135 ) 136 137 syscall_test( 138 size = "large", 139 add_overlay = True, 140 debug = False, 141 # Takes too long to run with S/R. 142 save = False, 143 test = "//test/perf/linux:randread_benchmark", 144 ) 145 146 syscall_test( 147 size = "large", 148 add_overlay = True, 149 debug = False, 150 # Takes too long to run with S/R. 151 save = False, 152 test = "//test/perf/linux:read_benchmark", 153 ) 154 155 syscall_test( 156 size = "large", 157 debug = False, 158 # Takes too long to run with S/R. 159 save = False, 160 test = "//test/perf/linux:sched_yield_benchmark", 161 ) 162 163 syscall_test( 164 size = "large", 165 debug = False, 166 # Takes too long to run with S/R. 167 save = False, 168 test = "//test/perf/linux:send_recv_benchmark", 169 ) 170 171 syscall_test( 172 size = "large", 173 add_overlay = True, 174 debug = False, 175 # Takes too long to run with S/R. 176 save = False, 177 test = "//test/perf/linux:seqwrite_benchmark", 178 ) 179 180 syscall_test( 181 size = "large", 182 debug = False, 183 # Takes too long to run with S/R. 184 save = False, 185 test = "//test/perf/linux:signal_benchmark", 186 ) 187 188 syscall_test( 189 debug = False, 190 # Takes too long to run with S/R. 191 save = False, 192 test = "//test/perf/linux:sleep_benchmark", 193 ) 194 195 syscall_test( 196 size = "large", 197 add_overlay = True, 198 debug = False, 199 # Takes too long to run with S/R. 200 save = False, 201 test = "//test/perf/linux:stat_benchmark", 202 ) 203 204 syscall_test( 205 size = "large", 206 add_overlay = True, 207 debug = False, 208 # Takes too long to run with S/R. 209 save = False, 210 tags = ["nogotsan"], 211 test = "//test/perf/linux:unlink_benchmark", 212 ) 213 214 syscall_test( 215 size = "large", 216 add_overlay = True, 217 debug = False, 218 # Takes too long to run with S/R. 219 save = False, 220 test = "//test/perf/linux:write_benchmark", 221 )