Skip to content

Commit

Permalink
Temporarily turn off evaluation of js and lua code
Browse files Browse the repository at this point in the history
  • Loading branch information
modlfo committed Jun 26, 2017
1 parent 22ec6de commit 132b350
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ module CliTest = struct
let () =
match code_type with
| "fixed" | "float" -> compileCppFile fullfile
| "js" -> checkJsFile fullfile
| "lua" -> checkLuaFile fullfile
| "js" -> (* checkJsFile fullfile *) ()
| "lua" -> (*checkLuaFile fullfile*) ()
| _ -> ()
in
generated_files
Expand All @@ -386,6 +386,7 @@ module CliTest = struct


let run (file:string) use_node real_type context : unit =
Sys.chdir initial_dir;
let fullfile = checkFile (in_test_directory ("../examples/"^file)) in
let generated_files = process use_node fullfile real_type in
let files_content =
Expand Down

0 comments on commit 132b350

Please sign in to comment.