This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@kedihacker ➜ /workspaces/doubletake (main) $ zig build | |
@kedihacker ➜ /workspaces/doubletake (main) $ ./zig-out/bin/doubletake | |
cimport.struct_wasmtime_store@1443e30@kedihacker ➜ /workspaces/doubletake (main) $ ./zig-out/bin/doubletake | |
bash: ./zig-out/bin/doubletake: No such file or directory | |
@kedihacker ➜ /workspaces/doubletake (main) $ zig build | |
@kedihacker ➜ /workspaces/doubletake (main) $ ./zig-out/bin/doubletake | |
cimport.struct_wasmtime_store@25d3e30@kedihacker ➜ /workspaces/doubletake (main) $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info : ( main ): Starting ZLS 0.13.0 @ '/home/codespace/.vscode-remote/data/User/globalStorage/ziglang.vscode-zig/zls_install/zls' | |
info : (server): Client is 'Visual Studio Code-1.95.3' | |
info : (server): No config file zls.json found. This is not an error. | |
info : (server): Set config option 'builtin_path' to '/home/codespace/.cache/zls/builtin.zig' | |
info : (server): Set config option 'zig_lib_path' to '/usr/local/lib/zig/lib' | |
info : (server): Set config option 'zig_exe_path' to '/usr/local/bin/zig' | |
info : (server): Set config option 'build_runner_path' to '/home/codespace/.cache/zls/build_runner/21872970afd69e48a0847077e5196711/build_runner.zig' | |
info : (server): Set config option 'global_cache_path' to '/home/codespace/.cache/zls' | |
info : (server): Set config option 'semantic_tokens' to 'partial' | |
info : (server): Set config option 'zig_lib_path' to '/home/codespace/.vscode-remote/data/User/globalStorage/ziglang.vscode-zig/zig_install/lib' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS D:\kod\git\cj8-qualifier\qualifier> python -m unittest local_test_suite.py | |
.........EE | |
====================================================================== | |
ERROR: test_010_lots_of_rows (local_test_suite.MakeTableTests) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "D:\kod\git\cj8-qualifier\qualifier\local_test_suite.py", line 749, in test_010_lots_of_rows | |
self.run_against_solution(case, fail_msg="Couldn't handle lots of rows.") | |
File "D:\kod\git\cj8-qualifier\qualifier\local_test_suite.py", line 451, in run_against_solution | |
raise RuntimeError("Couldn't find the known good result for this test.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if __name__ == '__main__': | |
table = make_table( | |
rows=[ | |
["Lemon"], | |
["Sebastiaan"], | |
["KutieKatj9"], | |
["Jake"], | |
["Not Joe"] | |
] | |
) |