Skip to content

Commit

Permalink
Disable dataflow for a few targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Fasano committed Sep 5, 2019
1 parent 0cfacd5 commit fab51c0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ fi

### TODO: validate that injfixupscript argument doesn't break build

### TODO: validate that lava_get can be injected successfully (or just that main_file) exists


# INSTALL
progress "validate" 0 "Installing..."
Expand Down
6 changes: 3 additions & 3 deletions target_configs/grep/grep.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "grep",
"db": "grep",
"preprocessed": true,
"dataflow": true,
"dataflow": false,

"tarfile": "grep-3.1-pre.tar.gz",

Expand All @@ -14,9 +14,9 @@
"clean": "make clean",
"install": "make install",
"command": "{install_dir}/bin/grep '\\(.\\).\\(.\\)' {input_file}",
"injfixupsscript": "fixup.sh {bug_build}",
"COMMENT_injfixupsscript": "fixup.sh {bug_build}",

"main_file": [ "grep-pre.c" ],
"main_file": [ "src/grep-pre.c" ],

"inputs": [ "inputs/hi.txt" ]
}
4 changes: 2 additions & 2 deletions target_configs/jq/jq.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jq",
"db": "jq",
"preprocessed": "true",
"dataflow": "true",
"dataflow": "false",

"tarfile": "jq-1.6-pre.tar.gz",

Expand All @@ -14,7 +14,7 @@
"clean": "make clean",
"install": "make install",
"command": "{install_dir}/bin/jq -eSCr . {input_file}",
"injfixupsscript": "fixup.sh {bug_build}",
"COMMENT_injfixupsscript": "fixup.sh {bug_build}",

"main_file": [ "src/main-pre.c" ],

Expand Down
4 changes: 2 additions & 2 deletions target_configs/libyaml/libyaml.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "libyaml",
"db": "libyaml",
"preprocessed": "true",
"dataflow": "true",
"dataflow": "false",

"tarfile": "libyaml-pre.tar.gz",

Expand All @@ -15,7 +15,7 @@
"install": "make install",
"command": "{install_dir}/bin/libyaml -c -u {input_file}",

"injfixupsscript": "fixup.sh {bug_build}",
"COMMENT_injfixupsscript": "fixup.sh {bug_build}",

"main_file": [ "src/parser.c" ],

Expand Down
2 changes: 1 addition & 1 deletion target_configs/tinyexpr/tinyexpr.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tinyexpr",
"db": "tinyexpr",
"preprocessed": true,
"dataflow": true,
"dataflow": false,

"tarfile": "tinyexpr-pre.tar.gz",

Expand Down

0 comments on commit fab51c0

Please sign in to comment.