zig/test
Jakub Konka e8b613783f check-object: remove wildcard matchers as they are too clunky
Instead, we now have a looser helper called `checkContains(...)`
that will match on any occurrence similarly to `std.mem.indexOf()`.

While at it, I have cleaned up other combinators to make the entire
API more consistent, and so:
* `checkStart(phrase)` is now `checkStart()` followed by
`checkExact(phrase)`
* `checkNext(phrase)` if matching exactly is now `checkExact(phrase)`
* `checkNext(phrase)` if matching loosely is now `checkContains(phrase)`
* `checkNext(phrase)` if matching exactly with var extractors is now
`checkExtract(phrase)`

Finally, `ElfDumper` is now dumping contents of `.symtab` and `.dynsym`
symbol tables. I have also removed dumping of symtabs as optional - they
are now always dumped which cleaned up the implementation even more.
2023-07-20 20:01:06 +02:00
..
behavior Sema: fix return type of generic function is function pointer 2023-07-18 21:15:16 -07:00
c_abi all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
cases Sema: fix compile error source location regressions 2023-07-18 19:02:06 -07:00
link check-object: remove wildcard matchers as they are too clunky 2023-07-20 20:01:06 +02:00
src test: fix cbe execution tests 2023-07-19 23:20:25 -04:00
standalone Sema: fix return type of generic function is function pointer 2023-07-18 21:15:16 -07:00
assemble_and_link.zig migrate from std.Target.current to @import("builtin").target 2021-10-04 23:48:55 -07:00
behavior.zig codegen: Set c_char signedness based on the target 2023-06-20 00:26:42 -07:00
cases.zig re-enable test-cases and get them all passing 2023-03-15 10:48:14 -07:00
cbe.zig std.cstr: deprecate namespace 2023-06-25 14:51:03 -07:00
compare_output.zig std.cstr: deprecate namespace 2023-06-25 14:51:03 -07:00
compile_errors.zig Port some stage1 test cases to stage2 2023-03-20 19:55:50 -04:00
gen_h.zig all: zig fmt and rename "@XToY" to "@YFromX" 2023-06-19 12:34:42 -07:00
link.zig test: linking static libraries built from intermediary object files 2023-07-11 11:46:59 +02:00
nvptx.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
run_translated_c.zig std.cstr: deprecate namespace 2023-06-25 14:51:03 -07:00
stack_traces.zig zig fmt: fix extra whitespace with multiline strings 2022-12-17 00:24:58 +02:00
standalone.zig Sema: fix return type of generic function is function pointer 2023-07-18 21:15:16 -07:00
tests.zig Fixes WriteFile.getFileSource failure on Windows (#15730) 2023-05-24 14:26:07 -07:00
translate_c.zig translate-c: Use @constCast and @volatileCast to remove CV-qualifiers 2023-06-29 23:36:56 +03:00