Zixi Liu - NJU
Zixi Liu - NJU
When I run `rasa test nlu -u test/test_data.json --model models`, I received this message: ``` UserWarning: The path 'test/test_data.json' does not seem to exist. Using the default value 'data' instead....
I find that when using `-C opt-level=0` as the compilation optimization level, all of the test cases can pass. However, if we use `-C opt-level=1/2/3/s/z`, a stackoverflow bug would be...
When using `-C opt-level=0` as the compilation optimization level, the test case `tests/smoke.rs/smoke_test_frames()` would trigger a panic. This is the command to compile (All of these four command could trigger...
I find that when using `-C opt-level=0` as the compilation optimization level, all of the test cases can pass. However, if we use `-C opt-level=1/2/3/s/z`, an error would be triggered....
I have installed everything, and after I run the following command: ```sh ./target/release/collector bench_local /local/home/zixliu/.cargo/bin/rustc ./target/release/site results.db ``` I cannot find anything on the website. Why? There is an error...
Hi, I'm developing a fuzzer to test the safe abstraction, and I fonnd a overflow issue in function `cdrs::types::try_i_to_n_bytes`. Below is a test case: ```rust fn test_try_i_to_n_bytes_UNell() { let int:...
Hi, I'm developing a fuzzer to test the safe abstraction, and I found a index out of bounds panic in function `set_thread_affinity()`. Bellow is a test case: ```rust #[allow(warnings, unused,...
Hi, I'm developing a fuzzer to test the safe abstraction, and I found a segmentation fault when calling function `z3/src/params/set_global_param()`. Bellow is a test case: ```rust #[allow(warnings, unused, non_snake_case)] #[test]...
Hi, I'm developing a fuzzer to test the safe abstraction, and I found some memory issues when calling function `futures-timer/src/native/global/raw_drop`, `raw_wake`, `raw_clone`, and `raw_wake_by_ref`. Below are some test cases: ```rust...
Hi, I'm developing a fuzzer to test the safe abstraction, and I fonnd a segmentation fault when calling function `src/lib/alloc_str()`. This is a test case: ```rust #[allow(warnings, unused)] #[test] fn...