zig/test
Andrew Kelley 9e234d4208 breaking change to std.io API
* Merge io.InStream and io.OutStream into io.File
 * Introduce io.OutStream and io.InStream interfaces
   - io.File implements both of these
 * Move mem.IncrementingAllocator to heap.IncrementingAllocator

Instead of:

```
%return std.io.stderr.printf("hello\n");
```

now do:

```
std.debug.warn("hello\n");
```

To print to stdout, see `io.getStdOut()`.

 * Rename std.ArrayList.resizeDown to std.ArrayList.shrink.
2017-10-31 04:47:55 -04:00
..
cases add test case for previous commit 2017-10-27 01:22:48 -04:00
standalone update std.os.ChildProcess API 2017-09-26 01:01:49 -04:00
assemble_and_link.zig @import("builtin") instead of @compileVar 2017-05-01 13:12:38 -04:00
behavior.zig add test case for previous commit 2017-10-27 01:22:48 -04:00
build_examples.zig std.os.ChildProcess: on windows cwd affects exe search path 2017-10-16 02:30:03 -04:00
compare_output.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00
compile_errors.zig Improve invalid character error messages (#566) 2017-10-26 10:00:23 -04:00
debug_safety.zig fix debug safety tests on windows 2017-10-16 00:20:51 -04:00
parsec.zig fix parse-c tests 2017-10-01 21:42:33 -04:00
tests.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00