summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/graphic/2486
blob: 45d092d18e4ce48e9bced2ec7fbee9e465af88fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
graphic: 0.928
device: 0.758
semantic: 0.692
debug: 0.604
vnc: 0.583
performance: 0.541
PID: 0.507
network: 0.457
permissions: 0.352
boot: 0.349
socket: 0.332
other: 0.304
files: 0.206
KVM: 0.061

RISC-V Regression: QEMU_CPU=f=false,zfinx=true gives misleading error message
Description of problem:
The f extension looks like it should be toggle-able using qemu_cpu since it doesn't throw error messages when specified.
Disabling the extension using f=false does not actually disable it as shown by the zfinx error message.
Eg. Unsupported extension is explicitly rejected
```
> QEMU_CPU=rv64,j=false ./qemu-riscv64 test.out
qemu-riscv64: can't apply global rv64-riscv-cpu.j=false: Property 'rv64-riscv-cpu.j' not found
```
Steps to reproduce:
1. Compile any riscv binary like: `int main() {}`
2. Execute using `QEMU_CPU=rv64,zfinx=true,f=false ./qemu-riscv64 test.out`