Skip to content

Commit

Permalink
Merge pull request #37 from Certora/uri/change_conf_file_suffix
Browse files Browse the repository at this point in the history
renamed all conf files to gconf CERT-4617
  • Loading branch information
urikirsh authored Jan 4, 2024
2 parents 5858eb3 + f98f401 commit 862cd0f
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ use serde_json;
use std::{collections::HashSet, env, error, path::PathBuf};

/// All test cases are generated by running Gambit on the individual files
/// listed in `all.json` and then using `scripts/mutants_log_to_regression.py`
/// listed in `all.gconf` and then using `scripts/mutants_log_to_regression.py`
/// to print `gambit_out/mutants.log` as regression test cases
#[test]
fn test_all() {
assert_exact_mutants_from_json(
"all.json",
"all.gconf",
&vec![
("BinaryOpMutation", "+", "-", (7, 10)),
("BinaryOpMutation", "+", "*", (7, 10)),
Expand Down Expand Up @@ -91,7 +91,7 @@ fn test_all() {
#[test]
fn multiple_contracts_1() {
assert_exact_mutants_from_json(
"multiple-contracts-1.json",
"multiple-contracts-1.gconf",
&vec![
//C.get10PowerDecimals
(
Expand Down Expand Up @@ -124,7 +124,7 @@ fn multiple_contracts_1() {
#[test]
fn multiple_contracts_2() {
assert_exact_mutants_from_json(
"multiple-contracts-2.json",
"multiple-contracts-2.gconf",
&vec![
/* Utils.add */
("BinaryOpMutation", "+", "-", (11, 17)),
Expand All @@ -150,7 +150,7 @@ fn multiple_contracts_2() {
#[test]
fn multiple_contracts_3() {
assert_exact_mutants_from_json(
"multiple-contracts-3.json",
"multiple-contracts-3.gconf",
&vec![
/* Utils.getarray */
/* Utils.add */
Expand Down Expand Up @@ -208,7 +208,7 @@ fn multiple_contracts_3() {
#[test]
fn multiple_contracts_4() {
assert_exact_mutants_from_json(
"multiple-contracts-4.json",
"multiple-contracts-4.gconf",
&vec![
/* Utils.getarray */
/* Utils.add */
Expand Down

0 comments on commit 862cd0f

Please sign in to comment.