Skip to content

Commit

Permalink
Re-enabling full harness
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Mar 3, 2024
1 parent 5d73b56 commit e5e3245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use serde::Deserialize;

fn main() {
let filter = std::env::args().nth(1).unwrap_or_default();
let filter = String::from("raw_format");
// let filter = String::from("raw_format");
for entry in std::fs::read_dir("tests/cases").unwrap() {
let entry = entry.unwrap().path();
if entry.extension().map_or(false, |ext| ext == "rsn") {
Expand Down

0 comments on commit e5e3245

Please sign in to comment.