| 1 | pub fn addCases(cases: *tests.LibcContext) void { |
| 2 | cases.addLibcTestCase("api/main.c", true, .{}); |
| 3 | |
| 4 | cases.addLibcTestCase("functional/argv.c", true, .{}); |
| 5 | cases.addLibcTestCase("functional/basename.c", true, .{}); |
| 6 | cases.addLibcTestCase("functional/clocale_mbfuncs.c", true, .{}); |
| 7 | cases.addLibcTestCase("functional/clock_gettime.c", true, .{}); |
| 8 | cases.addLibcTestCase("functional/crypt.c", true, .{}); |
| 9 | cases.addLibcTestCase("functional/dirname.c", true, .{}); |
| 10 | cases.addLibcTestCase("functional/env.c", true, .{}); |
| 11 | cases.addLibcTestCase("functional/fcntl.c", false, .{}); |
| 12 | cases.addLibcTestCase("functional/fdopen.c", false, .{}); |
| 13 | cases.addLibcTestCase("functional/fnmatch.c", true, .{}); |
| 14 | cases.addLibcTestCase("functional/fscanf.c", false, .{}); |
| 15 | cases.addLibcTestCase("functional/fwscanf.c", false, .{}); |
| 16 | cases.addLibcTestCase("functional/iconv_open.c", true, .{}); |
| 17 | cases.addLibcTestCase("functional/inet_pton.c", false, .{}); |
| 18 | // "functional/ipc_msg.c": Probably a bug in qemu |
| 19 | // "functional/ipc_sem.c": Probably a bug in qemu |
| 20 | // "functional/ipc_shm.c": Probably a bug in qemu |
| 21 | cases.addLibcTestCase("functional/mbc.c", true, .{}); |
| 22 | cases.addLibcTestCase("functional/memstream.c", true, .{}); |
| 23 | // "functional/mntent.c": https://www.openwall.com/lists/musl/2024/10/22/1 |
| 24 | cases.addLibcTestCase("functional/popen.c", false, .{}); |
| 25 | // cases.addLibcTestCase("functional/pthread_cancel-points.c", false, .{}); - racey if multiple instances of the test run concurrently. |
| 26 | cases.addLibcTestCase("functional/pthread_cancel.c", false, .{}); |
| 27 | cases.addLibcTestCase("functional/pthread_cond.c", false, .{}); |
| 28 | cases.addLibcTestCase("functional/pthread_mutex.c", false, .{}); |
| 29 | // "functional/pthread_mutex_pi.c": Probably a bug in qemu (big/little endian FUTEX_LOCK_PI) |
| 30 | // "functional/pthread_robust.c": https://gitlab.com/qemu-project/qemu/-/issues/2424 |
| 31 | cases.addLibcTestCase("functional/pthread_tsd.c", false, .{}); |
| 32 | cases.addLibcTestCase("functional/qsort.c", true, .{}); |
| 33 | cases.addLibcTestCase("functional/random.c", true, .{}); |
| 34 | cases.addLibcTestCase("functional/search_hsearch.c", true, .{}); |
| 35 | cases.addLibcTestCase("functional/search_insque.c", true, .{}); |
| 36 | cases.addLibcTestCase("functional/search_lsearch.c", true, .{}); |
| 37 | cases.addLibcTestCase("functional/search_tsearch.c", true, .{}); |
| 38 | cases.addLibcTestCase("functional/sem_init.c", false, .{}); |
| 39 | cases.addLibcTestCase("functional/sem_open.c", false, .{}); |
| 40 | cases.addLibcTestCase("functional/setjmp.c", false, .{}); |
| 41 | cases.addLibcTestCase("functional/snprintf.c", true, .{}); |
| 42 | cases.addLibcTestCase("functional/socket.c", false, .{}); |
| 43 | cases.addLibcTestCase("functional/spawn.c", false, .{}); |
| 44 | cases.addLibcTestCase("functional/sscanf.c", true, .{}); |
| 45 | cases.addLibcTestCase("functional/sscanf_long.c", false, .{}); |
| 46 | cases.addLibcTestCase("functional/stat.c", false, .{}); |
| 47 | cases.addLibcTestCase("functional/strftime.c", true, .{}); |
| 48 | cases.addLibcTestCase("functional/string.c", true, .{}); |
| 49 | cases.addLibcTestCase("functional/string_memcpy.c", true, .{}); |
| 50 | cases.addLibcTestCase("functional/string_memmem.c", true, .{}); |
| 51 | cases.addLibcTestCase("functional/string_memset.c", true, .{}); |
| 52 | cases.addLibcTestCase("functional/string_strchr.c", true, .{}); |
| 53 | cases.addLibcTestCase("functional/string_strcspn.c", true, .{}); |
| 54 | cases.addLibcTestCase("functional/string_strstr.c", true, .{}); |
| 55 | cases.addLibcTestCase("functional/strtod.c", true, .{}); |
| 56 | cases.addLibcTestCase("functional/strtod_long.c", true, .{}); |
| 57 | cases.addLibcTestCase("functional/strtod_simple.c", true, .{}); |
| 58 | cases.addLibcTestCase("functional/strtof.c", true, .{}); |
| 59 | cases.addLibcTestCase("functional/strtol.c", true, .{}); |
| 60 | cases.addLibcTestCase("functional/strtold.c", true, .{}); |
| 61 | cases.addLibcTestCase("functional/swprintf.c", true, .{}); |
| 62 | cases.addLibcTestCase("functional/tgmath.c", true, .{}); |
| 63 | cases.addLibcTestCase("functional/time.c", false, .{}); |
| 64 | cases.addLibcTestCase("functional/tls_align.c", true, .{ .additional_src_file = "functional/tls_align_dso.c" }); |
| 65 | cases.addLibcTestCase("functional/tls_init.c", false, .{}); |
| 66 | cases.addLibcTestCase("functional/tls_local_exec.c", false, .{}); |
| 67 | cases.addLibcTestCase("functional/udiv.c", true, .{}); |
| 68 | cases.addLibcTestCase("functional/ungetc.c", false, .{}); |
| 69 | // cases.addLibcTestCase("functional/utime.c", false, .{}); - fails under heavy load; futimens not reflected in subsequent fstat |
| 70 | cases.addLibcTestCase("functional/vfork.c", false, .{}); |
| 71 | cases.addLibcTestCase("functional/wcsstr.c", true, .{}); |
| 72 | cases.addLibcTestCase("functional/wcstol.c", true, .{}); |
| 73 | |
| 74 | // cases.addLibcTestCase("regression/daemon-failure.c", false, .{}); - unexpected ENOMEM with high FD limit |
| 75 | cases.addLibcTestCase("regression/dn_expand-empty.c", false, .{}); |
| 76 | cases.addLibcTestCase("regression/dn_expand-ptr-0.c", false, .{}); |
| 77 | cases.addLibcTestCase("regression/execle-env.c", false, .{}); |
| 78 | cases.addLibcTestCase("regression/fflush-exit.c", false, .{}); |
| 79 | cases.addLibcTestCase("regression/fgets-eof.c", true, .{}); |
| 80 | cases.addLibcTestCase("regression/fgetwc-buffering.c", false, .{}); |
| 81 | cases.addLibcTestCase("regression/flockfile-list.c", false, .{}); |
| 82 | cases.addLibcTestCase("regression/fpclassify-invalid-ld80.c", true, .{}); |
| 83 | cases.addLibcTestCase("regression/ftello-unflushed-append.c", false, .{}); |
| 84 | cases.addLibcTestCase("regression/getpwnam_r-crash.c", false, .{}); |
| 85 | cases.addLibcTestCase("regression/getpwnam_r-errno.c", false, .{}); |
| 86 | cases.addLibcTestCase("regression/iconv-roundtrips.c", true, .{}); |
| 87 | cases.addLibcTestCase("regression/inet_ntop-v4mapped.c", true, .{}); |
| 88 | cases.addLibcTestCase("regression/inet_pton-empty-last-field.c", true, .{}); |
| 89 | cases.addLibcTestCase("regression/iswspace-null.c", true, .{}); |
| 90 | cases.addLibcTestCase("regression/lrand48-signextend.c", true, .{}); |
| 91 | cases.addLibcTestCase("regression/lseek-large.c", false, .{}); |
| 92 | cases.addLibcTestCase("regression/malloc-0.c", true, .{}); |
| 93 | // "regression/malloc-brk-fail.c": QEMU OOM |
| 94 | // cases.addLibcTestCase("regression/malloc-oom.c", false, .{}); // wasi-libc: requires t_memfill; QEMU OOM |
| 95 | cases.addLibcTestCase("regression/mbsrtowcs-overflow.c", true, .{}); |
| 96 | cases.addLibcTestCase("regression/memmem-oob-read.c", true, .{}); |
| 97 | cases.addLibcTestCase("regression/memmem-oob.c", true, .{}); |
| 98 | cases.addLibcTestCase("regression/mkdtemp-failure.c", false, .{}); |
| 99 | cases.addLibcTestCase("regression/mkstemp-failure.c", false, .{}); |
| 100 | cases.addLibcTestCase("regression/printf-1e9-oob.c", true, .{}); |
| 101 | cases.addLibcTestCase("regression/printf-fmt-g-round.c", true, .{}); |
| 102 | cases.addLibcTestCase("regression/printf-fmt-g-zeros.c", true, .{}); |
| 103 | cases.addLibcTestCase("regression/printf-fmt-n.c", true, .{}); |
| 104 | // "regression/pthread-robust-detach.c": https://gitlab.com/qemu-project/qemu/-/issues/2424 |
| 105 | cases.addLibcTestCase("regression/pthread_atfork-errno-clobber.c", false, .{}); |
| 106 | cases.addLibcTestCase("regression/pthread_cancel-sem_wait.c", false, .{}); |
| 107 | // Flaky under heavy load: cases.addLibcTestCase("regression/pthread_cond-smasher.c", false, .{}); |
| 108 | // Flaky under heavy load: cases.addLibcTestCase("regression/pthread_cond_wait-cancel_ignored.c", false, .{}); |
| 109 | cases.addLibcTestCase("regression/pthread_condattr_setclock.c", false, .{}); |
| 110 | // "regression/pthread_create-oom.c": QEMU OOM |
| 111 | cases.addLibcTestCase("regression/pthread_exit-cancel.c", false, .{}); |
| 112 | cases.addLibcTestCase("regression/pthread_exit-dtor.c", false, .{}); |
| 113 | cases.addLibcTestCase("regression/pthread_once-deadlock.c", false, .{}); |
| 114 | cases.addLibcTestCase("regression/pthread_rwlock-ebusy.c", false, .{}); |
| 115 | cases.addLibcTestCase("regression/putenv-doublefree.c", true, .{}); |
| 116 | // cases.addLibcTestCase("regression/raise-race.c", false, .{}); - Sometimes hangs when run natively on x86_64-linux. |
| 117 | cases.addLibcTestCase("regression/regex-backref-0.c", true, .{}); |
| 118 | cases.addLibcTestCase("regression/regex-bracket-icase.c", true, .{}); |
| 119 | cases.addLibcTestCase("regression/regex-ere-backref.c", true, .{}); |
| 120 | cases.addLibcTestCase("regression/regex-escaped-high-byte.c", true, .{}); |
| 121 | cases.addLibcTestCase("regression/regex-negated-range.c", true, .{}); |
| 122 | cases.addLibcTestCase("regression/regexec-nosub.c", true, .{}); |
| 123 | cases.addLibcTestCase("regression/rewind-clear-error.c", false, .{}); |
| 124 | // cases.addLibcTestCase("regression/rlimit-open-files.c", false, .{}); - fails when machine is under heavy load |
| 125 | cases.addLibcTestCase("regression/scanf-bytes-consumed.c", true, .{}); |
| 126 | cases.addLibcTestCase("regression/scanf-match-literal-eof.c", true, .{}); |
| 127 | cases.addLibcTestCase("regression/scanf-nullbyte-char.c", true, .{}); |
| 128 | cases.addLibcTestCase("regression/sem_close-unmap.c", false, .{}); |
| 129 | // "regression/setenv-oom.c": QEMU OOM |
| 130 | cases.addLibcTestCase("regression/setvbuf-unget.c", true, .{}); |
| 131 | cases.addLibcTestCase("regression/sigaltstack.c", false, .{}); |
| 132 | cases.addLibcTestCase("regression/sigprocmask-internal.c", false, .{}); |
| 133 | cases.addLibcTestCase("regression/sigreturn.c", true, .{}); |
| 134 | cases.addLibcTestCase("regression/sscanf-eof.c", true, .{}); |
| 135 | cases.addLibcTestCase("regression/strverscmp.c", true, .{}); |
| 136 | cases.addLibcTestCase("regression/syscall-sign-extend.c", false, .{}); |
| 137 | cases.addLibcTestCase("regression/uselocale-0.c", true, .{}); |
| 138 | cases.addLibcTestCase("regression/wcsncpy-read-overflow.c", true, .{}); |
| 139 | cases.addLibcTestCase("regression/wcsstr-false-negative.c", true, .{}); |
| 140 | |
| 141 | cases.addLibcTestCase("math/acos.c", true, .{}); |
| 142 | cases.addLibcTestCase("math/acosf.c", true, .{}); |
| 143 | // cases.addLibcTestCase("math/acosh.c", true, .{}); |
| 144 | cases.addLibcTestCase("math/acoshf.c", true, .{}); |
| 145 | // cases.addLibcTestCase("math/acoshl.c", true, .{}); |
| 146 | // cases.addLibcTestCase("math/acosl.c", true, .{}); |
| 147 | cases.addLibcTestCase("math/asin.c", true, .{}); |
| 148 | cases.addLibcTestCase("math/asinf.c", true, .{}); |
| 149 | // cases.addLibcTestCase("math/asinh.c", true, .{}); |
| 150 | cases.addLibcTestCase("math/asinhf.c", true, .{}); |
| 151 | // cases.addLibcTestCase("math/asinhl.c", true, .{}); |
| 152 | cases.addLibcTestCase("math/asinl.c", true, .{}); |
| 153 | cases.addLibcTestCase("math/atan.c", true, .{}); |
| 154 | cases.addLibcTestCase("math/atan2.c", true, .{}); |
| 155 | cases.addLibcTestCase("math/atan2f.c", true, .{}); |
| 156 | cases.addLibcTestCase("math/atan2l.c", true, .{}); |
| 157 | cases.addLibcTestCase("math/atanf.c", true, .{}); |
| 158 | cases.addLibcTestCase("math/atanh.c", true, .{}); |
| 159 | cases.addLibcTestCase("math/atanhf.c", true, .{}); |
| 160 | cases.addLibcTestCase("math/atanhl.c", true, .{}); |
| 161 | cases.addLibcTestCase("math/atanl.c", true, .{}); |
| 162 | cases.addLibcTestCase("math/cbrt.c", true, .{}); |
| 163 | cases.addLibcTestCase("math/cbrtf.c", true, .{}); |
| 164 | cases.addLibcTestCase("math/cbrtl.c", true, .{}); |
| 165 | cases.addLibcTestCase("math/ceil.c", true, .{}); |
| 166 | cases.addLibcTestCase("math/ceilf.c", true, .{}); |
| 167 | cases.addLibcTestCase("math/ceill.c", true, .{}); |
| 168 | cases.addLibcTestCase("math/copysign.c", true, .{}); |
| 169 | cases.addLibcTestCase("math/copysignf.c", true, .{}); |
| 170 | cases.addLibcTestCase("math/copysignl.c", true, .{}); |
| 171 | cases.addLibcTestCase("math/cos.c", true, .{}); |
| 172 | cases.addLibcTestCase("math/cosf.c", true, .{}); |
| 173 | cases.addLibcTestCase("math/cosh.c", true, .{}); |
| 174 | cases.addLibcTestCase("math/coshf.c", true, .{}); |
| 175 | cases.addLibcTestCase("math/coshl.c", true, .{}); |
| 176 | cases.addLibcTestCase("math/cosl.c", true, .{}); |
| 177 | cases.addLibcTestCase("math/drem.c", true, .{}); |
| 178 | cases.addLibcTestCase("math/dremf.c", true, .{}); |
| 179 | cases.addLibcTestCase("math/erf.c", true, .{}); |
| 180 | cases.addLibcTestCase("math/erfc.c", true, .{}); |
| 181 | // cases.addLibcTestCase("math/erfcf.c", true, .{}); |
| 182 | cases.addLibcTestCase("math/erfcl.c", true, .{}); |
| 183 | cases.addLibcTestCase("math/erff.c", true, .{}); |
| 184 | cases.addLibcTestCase("math/erfl.c", true, .{}); |
| 185 | cases.addLibcTestCase("math/exp.c", true, .{}); |
| 186 | cases.addLibcTestCase("math/exp10.c", true, .{}); |
| 187 | cases.addLibcTestCase("math/exp10f.c", true, .{}); |
| 188 | cases.addLibcTestCase("math/exp10l.c", true, .{}); |
| 189 | cases.addLibcTestCase("math/exp2.c", true, .{}); |
| 190 | cases.addLibcTestCase("math/exp2f.c", true, .{}); |
| 191 | cases.addLibcTestCase("math/exp2l.c", true, .{}); |
| 192 | cases.addLibcTestCase("math/expf.c", true, .{}); |
| 193 | cases.addLibcTestCase("math/expl.c", true, .{}); |
| 194 | // cases.addLibcTestCase("math/expm1.c", true, .{}); |
| 195 | // cases.addLibcTestCase("math/expm1f.c", true, .{}); |
| 196 | // cases.addLibcTestCase("math/expm1l.c", true, .{}); |
| 197 | cases.addLibcTestCase("math/fabs.c", true, .{}); |
| 198 | cases.addLibcTestCase("math/fabsf.c", true, .{}); |
| 199 | cases.addLibcTestCase("math/fabsl.c", true, .{}); |
| 200 | cases.addLibcTestCase("math/fdim.c", true, .{}); |
| 201 | cases.addLibcTestCase("math/fdimf.c", true, .{}); |
| 202 | cases.addLibcTestCase("math/fdiml.c", true, .{}); |
| 203 | cases.addLibcTestCase("math/fenv.c", true, .{}); |
| 204 | cases.addLibcTestCase("math/floor.c", true, .{}); |
| 205 | cases.addLibcTestCase("math/floorf.c", true, .{}); |
| 206 | cases.addLibcTestCase("math/floorl.c", true, .{}); |
| 207 | // cases.addLibcTestCase("math/fma.c", true, .{}); |
| 208 | // cases.addLibcTestCase("math/fmaf.c", true, .{}); |
| 209 | // cases.addLibcTestCase("math/fmal.c", true, .{}); |
| 210 | cases.addLibcTestCase("math/fmax.c", true, .{}); |
| 211 | cases.addLibcTestCase("math/fmaxf.c", true, .{}); |
| 212 | cases.addLibcTestCase("math/fmaxl.c", true, .{}); |
| 213 | cases.addLibcTestCase("math/fmin.c", true, .{}); |
| 214 | cases.addLibcTestCase("math/fminf.c", true, .{}); |
| 215 | cases.addLibcTestCase("math/fminl.c", true, .{}); |
| 216 | cases.addLibcTestCase("math/fmod.c", true, .{}); |
| 217 | cases.addLibcTestCase("math/fmodf.c", true, .{}); |
| 218 | cases.addLibcTestCase("math/fmodl.c", true, .{}); |
| 219 | cases.addLibcTestCase("math/fpclassify.c", true, .{}); |
| 220 | cases.addLibcTestCase("math/frexp.c", true, .{}); |
| 221 | cases.addLibcTestCase("math/frexpf.c", true, .{}); |
| 222 | cases.addLibcTestCase("math/frexpl.c", true, .{}); |
| 223 | cases.addLibcTestCase("math/hypot.c", true, .{}); |
| 224 | cases.addLibcTestCase("math/hypotf.c", true, .{}); |
| 225 | cases.addLibcTestCase("math/hypotl.c", true, .{}); |
| 226 | // cases.addLibcTestCase("math/ilogb.c", true, .{}); |
| 227 | // cases.addLibcTestCase("math/ilogbf.c", true, .{}); |
| 228 | // cases.addLibcTestCase("math/ilogbl.c", true, .{}); |
| 229 | cases.addLibcTestCase("math/isless.c", true, .{}); |
| 230 | // cases.addLibcTestCase("math/j0.c", true, .{}); |
| 231 | cases.addLibcTestCase("math/j0f.c", true, .{}); |
| 232 | cases.addLibcTestCase("math/j1.c", true, .{}); |
| 233 | cases.addLibcTestCase("math/j1f.c", true, .{}); |
| 234 | // cases.addLibcTestCase("math/jn.c", true, .{}); |
| 235 | // cases.addLibcTestCase("math/jnf.c", true, .{}); |
| 236 | cases.addLibcTestCase("math/ldexp.c", true, .{}); |
| 237 | cases.addLibcTestCase("math/ldexpf.c", true, .{}); |
| 238 | cases.addLibcTestCase("math/ldexpl.c", true, .{}); |
| 239 | // cases.addLibcTestCase("math/lgamma.c", true, .{}); |
| 240 | cases.addLibcTestCase("math/lgamma_r.c", true, .{}); |
| 241 | // cases.addLibcTestCase("math/lgammaf.c", true, .{}); |
| 242 | // cases.addLibcTestCase("math/lgammaf_r.c", true, .{}); |
| 243 | // cases.addLibcTestCase("math/lgammal.c", true, .{}); |
| 244 | cases.addLibcTestCase("math/lgammal_r.c", true, .{}); |
| 245 | // cases.addLibcTestCase("math/llrint.c", true, .{}); |
| 246 | // cases.addLibcTestCase("math/llrintf.c", true, .{}); |
| 247 | // cases.addLibcTestCase("math/llrintl.c", true, .{}); |
| 248 | // cases.addLibcTestCase("math/llround.c", true, .{}); |
| 249 | // cases.addLibcTestCase("math/llroundf.c", true, .{}); |
| 250 | // cases.addLibcTestCase("math/llroundl.c", true, .{}); |
| 251 | cases.addLibcTestCase("math/log.c", true, .{}); |
| 252 | cases.addLibcTestCase("math/log10.c", true, .{}); |
| 253 | cases.addLibcTestCase("math/log10f.c", true, .{}); |
| 254 | cases.addLibcTestCase("math/log10l.c", true, .{}); |
| 255 | cases.addLibcTestCase("math/log1p.c", true, .{}); |
| 256 | cases.addLibcTestCase("math/log1pf.c", true, .{}); |
| 257 | // cases.addLibcTestCase("math/log1pl.c", true, .{}); |
| 258 | cases.addLibcTestCase("math/log2.c", true, .{}); |
| 259 | cases.addLibcTestCase("math/log2f.c", true, .{}); |
| 260 | cases.addLibcTestCase("math/log2l.c", true, .{}); |
| 261 | cases.addLibcTestCase("math/logb.c", true, .{}); |
| 262 | cases.addLibcTestCase("math/logbf.c", true, .{}); |
| 263 | cases.addLibcTestCase("math/logbl.c", true, .{}); |
| 264 | cases.addLibcTestCase("math/logf.c", true, .{}); |
| 265 | cases.addLibcTestCase("math/logl.c", true, .{}); |
| 266 | cases.addLibcTestCase("math/lrint.c", true, .{}); |
| 267 | cases.addLibcTestCase("math/lrintf.c", true, .{}); |
| 268 | cases.addLibcTestCase("math/lrintl.c", true, .{}); |
| 269 | cases.addLibcTestCase("math/lround.c", true, .{}); |
| 270 | cases.addLibcTestCase("math/lroundf.c", true, .{}); |
| 271 | cases.addLibcTestCase("math/lroundl.c", true, .{}); |
| 272 | cases.addLibcTestCase("math/modf.c", true, .{}); |
| 273 | cases.addLibcTestCase("math/modff.c", true, .{}); |
| 274 | cases.addLibcTestCase("math/modfl.c", true, .{}); |
| 275 | // cases.addLibcTestCase("math/nearbyint.c", true, .{}); |
| 276 | cases.addLibcTestCase("math/nearbyintf.c", true, .{}); |
| 277 | // cases.addLibcTestCase("math/nearbyintl.c", true, .{}); |
| 278 | cases.addLibcTestCase("math/nextafter.c", true, .{}); |
| 279 | cases.addLibcTestCase("math/nextafterf.c", true, .{}); |
| 280 | cases.addLibcTestCase("math/nextafterl.c", true, .{}); |
| 281 | cases.addLibcTestCase("math/nexttoward.c", true, .{}); |
| 282 | cases.addLibcTestCase("math/nexttowardf.c", true, .{}); |
| 283 | cases.addLibcTestCase("math/nexttowardl.c", true, .{}); |
| 284 | // cases.addLibcTestCase("math/pow.c", true, .{}); |
| 285 | cases.addLibcTestCase("math/pow10.c", true, .{}); |
| 286 | cases.addLibcTestCase("math/pow10f.c", true, .{}); |
| 287 | cases.addLibcTestCase("math/pow10l.c", true, .{}); |
| 288 | // cases.addLibcTestCase("math/powf.c", true, .{}); |
| 289 | // cases.addLibcTestCase("math/powl.c", true, .{}); |
| 290 | cases.addLibcTestCase("math/remainder.c", true, .{}); |
| 291 | cases.addLibcTestCase("math/remainderf.c", true, .{}); |
| 292 | cases.addLibcTestCase("math/remainderl.c", true, .{}); |
| 293 | cases.addLibcTestCase("math/remquo.c", true, .{}); |
| 294 | cases.addLibcTestCase("math/remquof.c", true, .{}); |
| 295 | cases.addLibcTestCase("math/remquol.c", true, .{}); |
| 296 | cases.addLibcTestCase("math/rint.c", true, .{}); |
| 297 | cases.addLibcTestCase("math/rintf.c", true, .{}); |
| 298 | cases.addLibcTestCase("math/rintl.c", true, .{}); |
| 299 | cases.addLibcTestCase("math/round.c", true, .{}); |
| 300 | cases.addLibcTestCase("math/roundf.c", true, .{}); |
| 301 | cases.addLibcTestCase("math/roundl.c", true, .{}); |
| 302 | cases.addLibcTestCase("math/scalb.c", true, .{}); |
| 303 | cases.addLibcTestCase("math/scalbf.c", true, .{}); |
| 304 | cases.addLibcTestCase("math/scalbln.c", true, .{}); |
| 305 | cases.addLibcTestCase("math/scalblnf.c", true, .{}); |
| 306 | cases.addLibcTestCase("math/scalblnl.c", true, .{}); |
| 307 | cases.addLibcTestCase("math/scalbn.c", true, .{}); |
| 308 | cases.addLibcTestCase("math/scalbnf.c", true, .{}); |
| 309 | cases.addLibcTestCase("math/scalbnl.c", true, .{}); |
| 310 | cases.addLibcTestCase("math/sin.c", true, .{}); |
| 311 | cases.addLibcTestCase("math/sincos.c", true, .{}); |
| 312 | cases.addLibcTestCase("math/sincosf.c", true, .{}); |
| 313 | cases.addLibcTestCase("math/sincosl.c", true, .{}); |
| 314 | cases.addLibcTestCase("math/sinf.c", true, .{}); |
| 315 | // cases.addLibcTestCase("math/sinh.c", true, .{}); |
| 316 | cases.addLibcTestCase("math/sinhf.c", true, .{}); |
| 317 | // cases.addLibcTestCase("math/sinhl.c", true, .{}); |
| 318 | cases.addLibcTestCase("math/sinl.c", true, .{}); |
| 319 | cases.addLibcTestCase("math/sqrt.c", true, .{}); |
| 320 | cases.addLibcTestCase("math/sqrtf.c", true, .{}); |
| 321 | cases.addLibcTestCase("math/sqrtl.c", true, .{}); |
| 322 | cases.addLibcTestCase("math/tan.c", true, .{}); |
| 323 | cases.addLibcTestCase("math/tanf.c", true, .{}); |
| 324 | cases.addLibcTestCase("math/tanh.c", true, .{}); |
| 325 | cases.addLibcTestCase("math/tanhf.c", true, .{}); |
| 326 | cases.addLibcTestCase("math/tanhl.c", true, .{}); |
| 327 | cases.addLibcTestCase("math/tanl.c", true, .{}); |
| 328 | // cases.addLibcTestCase("math/tgamma.c", true, .{}); |
| 329 | // cases.addLibcTestCase("math/tgammaf.c", true, .{}); |
| 330 | // cases.addLibcTestCase("math/tgammal.c", true, .{}); |
| 331 | cases.addLibcTestCase("math/trunc.c", true, .{}); |
| 332 | cases.addLibcTestCase("math/truncf.c", true, .{}); |
| 333 | cases.addLibcTestCase("math/truncl.c", true, .{}); |
| 334 | // cases.addLibcTestCase("math/y0.c", true, .{}); |
| 335 | // cases.addLibcTestCase("math/y0f.c", true, .{}); |
| 336 | // cases.addLibcTestCase("math/y1.c", true, .{}); |
| 337 | // cases.addLibcTestCase("math/y1f.c", true, .{}); |
| 338 | // cases.addLibcTestCase("math/yn.c", true, .{}); |
| 339 | // cases.addLibcTestCase("math/ynf.c", true, .{}); |
| 340 | } |
| 341 | |
| 342 | const std = @import("std"); |
| 343 | const tests = @import("tests.zig"); |