1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
(executables
(names pr6824 print_if_newline pp_print_custom_break print_seq tformat)
(libraries)
(flags
(:standard -no-strict-formats \ -strict-formats))
(modes js))
(rule
(target pr6824.referencejs)
(deps pr6824.bc.js)
(action
(with-stdout-to
%{target}
(run node ./pr6824.bc.js))))
(rule
(alias runtest)
(deps pr6824.reference pr6824.referencejs)
(action
(diff pr6824.reference pr6824.referencejs)))
(rule
(target print_if_newline.referencejs)
(deps print_if_newline.bc.js)
(action
(with-stdout-to
%{target}
(run node ./print_if_newline.bc.js))))
(rule
(alias runtest)
(deps print_if_newline.reference print_if_newline.referencejs)
(action
(diff print_if_newline.reference print_if_newline.referencejs)))
(rule
(target pp_print_custom_break.referencejs)
(deps pp_print_custom_break.bc.js)
(action
(with-stdout-to
%{target}
(run node ./pp_print_custom_break.bc.js))))
(rule
(alias runtest)
(deps pp_print_custom_break.reference pp_print_custom_break.referencejs)
(action
(diff pp_print_custom_break.reference pp_print_custom_break.referencejs)))
(rule
(target print_seq.referencejs)
(deps print_seq.bc.js)
(action
(with-stdout-to
%{target}
(run node ./print_seq.bc.js))))
(rule
(alias runtest)
(deps print_seq.reference print_seq.referencejs)
(action
(diff print_seq.reference print_seq.referencejs)))
(rule
(target tformat.referencejs)
(deps tformat.bc.js)
(action
(with-stdout-to
%{target}
(run node ./tformat.bc.js))))
(rule
(alias runtest)
(deps tformat.reference tformat.referencejs)
(action
(diff tformat.reference tformat.referencejs)))
|