Skip to content

Commit

Permalink
Require js data in dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Sep 25, 2024
1 parent 188f273 commit 8694287
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/ffi.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
mod common;
use common::{c::run_make_with, run_script_relative_to_git_root, Result};

use crate::common::c::require_c_exe;
use common::{
c::{require_c_exe, run_make_with},
js::require_js_data,
run_script_relative_to_git_root, Result,
};

#[test]
fn make_test_basic_ffi_hb_get() -> Result<()> {
//let x: &[u8] = &[128, 228, 64, 216, 240, 85, 50, 53, 10];
//println!("{}", String::from_utf8_lossy(&x));
//assert!(false);
require_js_data()?;
require_c_exe()?;
let _ = run_make_with("target/hyperbee")?;
let output = run_script_relative_to_git_root("tests/common/c/target/hyperbee")?;
Expand Down

0 comments on commit 8694287

Please sign in to comment.