Skip to content

Commit

Permalink
Add .bin's to version control
Browse files Browse the repository at this point in the history
  • Loading branch information
breqdev committed Nov 23, 2023
1 parent 44e1983 commit 3f085a7
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ jobs:
- name: Install system libraries
run: sudo apt-get install libudev-dev

- name: Get directory
run: pwd && ls

- name: Run tests and collect coverage
run: LLVM_PROFILE_FILE='cargo-test-%p-%m.profraw' RUSTFLAGS="-Cinstrument-coverage -Clink-dead-code" cargo test

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
/bin
/flamegraph.svg
/.idea
.DS_Store
Binary file added bin/easy.bin
Binary file not shown.
Binary file added bin/guessing.bin
Binary file not shown.
Binary file added bin/klaus.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion src/systems/klaus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ mod tests {

#[test]
fn test_klaus() {
let roms = RomFile::from_file("noentiendo/bin/klaus.bin");
let roms = RomFile::from_file("bin/klaus.bin");
let platform = TextPlatform::new();
let pc = Rc::new(Cell::new(0));
let mut system = KlausSystemBuilder::build(roms, Some(pc.clone()), platform.provider());
Expand Down

0 comments on commit 3f085a7

Please sign in to comment.