@@ -126,10 +126,10 @@ Module EORMMUOFF.
126126
127127 Definition fuel := 2%nat.
128128
129- Definition test_results_pf :=
130- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
129+ Definition test_results :=
130+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
131131
132- Goal reg_extract R0 0%fin <$> test_results_pf = Listset [Ok 0x110%Z].
132+ Goal reg_extract R0 0%fin <$> test_results = Listset [Ok 0x110%Z].
133133 vm_compute (_ <$> _).
134134 reflexivity.
135135 Qed .
@@ -192,10 +192,10 @@ Module EOR.
192192
193193 Definition fuel := 2%nat.
194194
195- Definition test_results_pf :=
196- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
195+ Definition test_results :=
196+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
197197
198- Goal reg_extract R0 0%fin <$> test_results_pf = Listset [Ok 0x110%Z].
198+ Goal reg_extract R0 0%fin <$> test_results = Listset [Ok 0x110%Z].
199199 vm_compute (_ <$> _).
200200 reflexivity.
201201 Qed .
@@ -245,10 +245,10 @@ Module LDR.
245245
246246 Definition fuel := 2%nat.
247247
248- Definition test_results_pf :=
249- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
248+ Definition test_results :=
249+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
250250
251- Goal reg_extract R0 0%fin <$> test_results_pf = Listset [Ok 0x2a%Z].
251+ Goal reg_extract R0 0%fin <$> test_results = Listset [Ok 0x2a%Z].
252252 vm_compute (_ <$> _).
253253 reflexivity.
254254 Qed .
@@ -297,10 +297,10 @@ Module STRLDR.
297297
298298 Definition fuel := 4%nat.
299299
300- Definition test_results_pf :=
301- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
300+ Definition test_results :=
301+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
302302
303- Goal reg_extract R0 0%fin <$> test_results_pf ≡ Listset [Ok 0x2a%Z].
303+ Goal reg_extract R0 0%fin <$> test_results ≡ Listset [Ok 0x2a%Z].
304304 vm_compute (_ <$> _).
305305 set_solver.
306306 Qed .
@@ -364,13 +364,13 @@ Module LDRPT.
364364 archState.regs := [# init_reg];
365365 archState.address_space := PAS_NonSecure |}.
366366
367- Definition fuel := 4 %nat.
367+ Definition fuel := 5 %nat.
368368
369- Definition test_results_pf :=
370- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
369+ Definition test_results :=
370+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
371371
372372 (* R0 should be 0x2a (from old mapping), R4 should be 0x42 (from new mapping) *)
373- Goal elements (regs_extract [(0%fin, R0); (0%fin, R4)] <$> test_results_pf ) ≡ₚ
373+ Goal elements (regs_extract [(0%fin, R0); (0%fin, R4)] <$> test_results ) ≡ₚ
374374 [Ok [0x2a%Z; 0x2a%Z]; Ok [0x2a%Z; 0x42%Z]].
375375 Proof .
376376 vm_compute (elements _).
@@ -457,12 +457,12 @@ Module MP.
457457 archState.regs := [# init_reg_t1; init_reg_t2];
458458 archState.address_space := PAS_NonSecure |}.
459459
460- Definition fuel := 6 %nat.
460+ Definition fuel := 8 %nat.
461461
462- Definition test_results_pf :=
463- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
462+ Definition test_results :=
463+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
464464
465- Goal elements (regs_extract [(1%fin, R5); (1%fin, R2)] <$> test_results_pf ) ≡ₚ
465+ Goal elements (regs_extract [(1%fin, R5); (1%fin, R2)] <$> test_results ) ≡ₚ
466466 [Ok [0x0%Z;0x2a%Z]; Ok [0x0%Z;0x0%Z]; Ok [0x1%Z; 0x2a%Z]; Ok [0x1%Z; 0x0%Z]].
467467 Proof .
468468 vm_compute (elements _).
@@ -551,11 +551,11 @@ Module MPDMBS.
551551
552552 Definition fuel := 8%nat.
553553
554- Definition test_results_pf :=
555- VMPromising_cert_c_pf arm_sem fuel n_threads termCond initState.
554+ Definition test_results :=
555+ VMPromising_cert_c arm_sem fuel n_threads termCond initState.
556556
557557 (** The test is fenced enough, the 0x1; 0x0 outcome is impossible *)
558- Goal elements (regs_extract [(1%fin, R5); (1%fin, R2)] <$> test_results_pf ) ≡ₚ
558+ Goal elements (regs_extract [(1%fin, R5); (1%fin, R2)] <$> test_results ) ≡ₚ
559559 [Ok [0x0%Z;0x2a%Z]; Ok [0x0%Z;0x0%Z]; Ok [0x1%Z; 0x2a%Z]].
560560 Proof .
561561 vm_compute (elements _).
0 commit comments