From b7340a855de1caa0f4720bb8f36cebff9704a6d7 Mon Sep 17 00:00:00 2001 From: Kamil Jarosz Date: Thu, 22 Aug 2024 00:07:29 +0200 Subject: [PATCH] tests: Add compilation scripts for tests --- tests/tests/swfs/avm2/edittext_always_show_selection/compile.sh | 2 ++ .../tests/swfs/avm2/edittext_at_point_methods_basic/compile.sh | 2 ++ .../tests/swfs/avm2/edittext_get_line_index_of_char/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_html/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_html_condensewhite/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_html_font_size_swf12/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_html_font_size_swf13/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_line_methods/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_mouse_selection/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_paragraph_methods/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_restrict/compile.sh | 2 ++ tests/tests/swfs/avm2/edittext_selected_text/compile.sh | 2 ++ .../swfs/avm2/eventdispatcher_dispatchevent_cancel/compile.sh | 2 ++ tests/tests/swfs/avm2/filereference_save/compile.sh | 2 ++ tests/tests/swfs/avm2/filereference_save_and_browse/compile.sh | 2 ++ tests/tests/swfs/avm2/filereference_save_and_load/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_code/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_key_basic/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_key_navigation/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_key_same_object/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_mixed_key_mouse/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_mouse_basic/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_mouse_focusable/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_events_mouse_same_object/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_remove/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_root_movie/compile.sh | 2 ++ tests/tests/swfs/avm2/focus_stage/compile.sh | 2 ++ tests/tests/swfs/avm2/focusrect/compile.sh | 2 ++ tests/tests/swfs/avm2/focusrect_focuslost/compile.sh | 2 ++ tests/tests/swfs/avm2/focusrect_property/compile.sh | 2 ++ tests/tests/swfs/avm2/graphics_draw_path/compile.sh | 2 ++ tests/tests/swfs/avm2/graphics_draw_triangles/compile.sh | 2 ++ tests/tests/swfs/avm2/mouse_click_events/compile.sh | 2 ++ tests/tests/swfs/avm2/mouse_double_click_events/compile.sh | 2 ++ tests/tests/swfs/avm2/mouse_wheel_events/compile.sh | 2 ++ tests/tests/swfs/avm2/stage_properties2/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_arrows/compile.sh | 2 ++ .../tests/swfs/avm2/tab_ordering_automatic_advanced/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_automatic_basic/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_children/compile.sh | 2 ++ .../swfs/avm2/tab_ordering_children_doc_example/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_custom_basic/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_properties/compile.sh | 2 ++ .../tests/swfs/avm2/tab_ordering_stage_tab_children/compile.sh | 2 ++ .../avm2/tab_ordering_stage_tab_children_remove_root/compile.sh | 2 ++ tests/tests/swfs/avm2/tab_ordering_tabbable/compile.sh | 2 ++ tests/tests/swfs/avm2/text_run/compile.sh | 2 ++ .../tests/swfs/avm2/textline_inapplicable_properties/compile.sh | 2 ++ .../focus_highlight_avm2_button_bounds/compile.sh | 2 ++ .../focus_highlight/focus_highlight_empty_clip/compile.sh | 2 ++ 50 files changed, 100 insertions(+) create mode 100755 tests/tests/swfs/avm2/edittext_always_show_selection/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_at_point_methods_basic/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_get_line_index_of_char/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_html/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_html_condensewhite/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_html_font_size_swf12/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_html_font_size_swf13/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_line_methods/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_mouse_selection/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_paragraph_methods/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_restrict/compile.sh create mode 100755 tests/tests/swfs/avm2/edittext_selected_text/compile.sh create mode 100755 tests/tests/swfs/avm2/eventdispatcher_dispatchevent_cancel/compile.sh create mode 100755 tests/tests/swfs/avm2/filereference_save/compile.sh create mode 100755 tests/tests/swfs/avm2/filereference_save_and_browse/compile.sh create mode 100755 tests/tests/swfs/avm2/filereference_save_and_load/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_code/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_key_basic/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_key_navigation/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_key_same_object/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_mixed_key_mouse/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_mouse_basic/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_mouse_focusable/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_events_mouse_same_object/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_remove/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_root_movie/compile.sh create mode 100755 tests/tests/swfs/avm2/focus_stage/compile.sh create mode 100755 tests/tests/swfs/avm2/focusrect/compile.sh create mode 100755 tests/tests/swfs/avm2/focusrect_focuslost/compile.sh create mode 100755 tests/tests/swfs/avm2/focusrect_property/compile.sh create mode 100755 tests/tests/swfs/avm2/graphics_draw_path/compile.sh create mode 100755 tests/tests/swfs/avm2/graphics_draw_triangles/compile.sh create mode 100755 tests/tests/swfs/avm2/mouse_click_events/compile.sh create mode 100755 tests/tests/swfs/avm2/mouse_double_click_events/compile.sh create mode 100755 tests/tests/swfs/avm2/mouse_wheel_events/compile.sh create mode 100755 tests/tests/swfs/avm2/stage_properties2/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_arrows/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_automatic_advanced/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_automatic_basic/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_children/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_children_doc_example/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_custom_basic/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_properties/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_stage_tab_children/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_stage_tab_children_remove_root/compile.sh create mode 100755 tests/tests/swfs/avm2/tab_ordering_tabbable/compile.sh create mode 100755 tests/tests/swfs/avm2/text_run/compile.sh create mode 100755 tests/tests/swfs/avm2/textline_inapplicable_properties/compile.sh create mode 100755 tests/tests/swfs/visual/focus_highlight/focus_highlight_avm2_button_bounds/compile.sh create mode 100755 tests/tests/swfs/visual/focus_highlight/focus_highlight_empty_clip/compile.sh diff --git a/tests/tests/swfs/avm2/edittext_always_show_selection/compile.sh b/tests/tests/swfs/avm2/edittext_always_show_selection/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_always_show_selection/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_at_point_methods_basic/compile.sh b/tests/tests/swfs/avm2/edittext_at_point_methods_basic/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_at_point_methods_basic/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_get_line_index_of_char/compile.sh b/tests/tests/swfs/avm2/edittext_get_line_index_of_char/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_get_line_index_of_char/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_html/compile.sh b/tests/tests/swfs/avm2/edittext_html/compile.sh new file mode 100755 index 000000000..fa2b107ff --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_html/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -swf-version 9 -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_html_condensewhite/compile.sh b/tests/tests/swfs/avm2/edittext_html_condensewhite/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_html_condensewhite/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_html_font_size_swf12/compile.sh b/tests/tests/swfs/avm2/edittext_html_font_size_swf12/compile.sh new file mode 100755 index 000000000..7b6324e8d --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_html_font_size_swf12/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -swf-version 12 -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_html_font_size_swf13/compile.sh b/tests/tests/swfs/avm2/edittext_html_font_size_swf13/compile.sh new file mode 100755 index 000000000..6edf203f5 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_html_font_size_swf13/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -swf-version 13 -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_line_methods/compile.sh b/tests/tests/swfs/avm2/edittext_line_methods/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_line_methods/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_mouse_selection/compile.sh b/tests/tests/swfs/avm2/edittext_mouse_selection/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_mouse_selection/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_paragraph_methods/compile.sh b/tests/tests/swfs/avm2/edittext_paragraph_methods/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_paragraph_methods/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_restrict/compile.sh b/tests/tests/swfs/avm2/edittext_restrict/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_restrict/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/edittext_selected_text/compile.sh b/tests/tests/swfs/avm2/edittext_selected_text/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/edittext_selected_text/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/eventdispatcher_dispatchevent_cancel/compile.sh b/tests/tests/swfs/avm2/eventdispatcher_dispatchevent_cancel/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/eventdispatcher_dispatchevent_cancel/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/filereference_save/compile.sh b/tests/tests/swfs/avm2/filereference_save/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/filereference_save/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/filereference_save_and_browse/compile.sh b/tests/tests/swfs/avm2/filereference_save_and_browse/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/filereference_save_and_browse/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/filereference_save_and_load/compile.sh b/tests/tests/swfs/avm2/filereference_save_and_load/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/filereference_save_and_load/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_code/compile.sh b/tests/tests/swfs/avm2/focus_events_code/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_code/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_key_basic/compile.sh b/tests/tests/swfs/avm2/focus_events_key_basic/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_key_basic/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_key_navigation/compile.sh b/tests/tests/swfs/avm2/focus_events_key_navigation/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_key_navigation/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_key_same_object/compile.sh b/tests/tests/swfs/avm2/focus_events_key_same_object/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_key_same_object/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_mixed_key_mouse/compile.sh b/tests/tests/swfs/avm2/focus_events_mixed_key_mouse/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_mixed_key_mouse/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_mouse_basic/compile.sh b/tests/tests/swfs/avm2/focus_events_mouse_basic/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_mouse_basic/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_mouse_focusable/compile.sh b/tests/tests/swfs/avm2/focus_events_mouse_focusable/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_mouse_focusable/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_events_mouse_same_object/compile.sh b/tests/tests/swfs/avm2/focus_events_mouse_same_object/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_events_mouse_same_object/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_remove/compile.sh b/tests/tests/swfs/avm2/focus_remove/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_remove/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_root_movie/compile.sh b/tests/tests/swfs/avm2/focus_root_movie/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_root_movie/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focus_stage/compile.sh b/tests/tests/swfs/avm2/focus_stage/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focus_stage/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focusrect/compile.sh b/tests/tests/swfs/avm2/focusrect/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focusrect/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focusrect_focuslost/compile.sh b/tests/tests/swfs/avm2/focusrect_focuslost/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focusrect_focuslost/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/focusrect_property/compile.sh b/tests/tests/swfs/avm2/focusrect_property/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/focusrect_property/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/graphics_draw_path/compile.sh b/tests/tests/swfs/avm2/graphics_draw_path/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/graphics_draw_path/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/graphics_draw_triangles/compile.sh b/tests/tests/swfs/avm2/graphics_draw_triangles/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/graphics_draw_triangles/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/mouse_click_events/compile.sh b/tests/tests/swfs/avm2/mouse_click_events/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/mouse_click_events/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/mouse_double_click_events/compile.sh b/tests/tests/swfs/avm2/mouse_double_click_events/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/mouse_double_click_events/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/mouse_wheel_events/compile.sh b/tests/tests/swfs/avm2/mouse_wheel_events/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/mouse_wheel_events/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/stage_properties2/compile.sh b/tests/tests/swfs/avm2/stage_properties2/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/stage_properties2/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_arrows/compile.sh b/tests/tests/swfs/avm2/tab_ordering_arrows/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_arrows/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_automatic_advanced/compile.sh b/tests/tests/swfs/avm2/tab_ordering_automatic_advanced/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_automatic_advanced/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_automatic_basic/compile.sh b/tests/tests/swfs/avm2/tab_ordering_automatic_basic/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_automatic_basic/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_children/compile.sh b/tests/tests/swfs/avm2/tab_ordering_children/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_children/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_children_doc_example/compile.sh b/tests/tests/swfs/avm2/tab_ordering_children_doc_example/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_children_doc_example/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_custom_basic/compile.sh b/tests/tests/swfs/avm2/tab_ordering_custom_basic/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_custom_basic/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_properties/compile.sh b/tests/tests/swfs/avm2/tab_ordering_properties/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_properties/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_stage_tab_children/compile.sh b/tests/tests/swfs/avm2/tab_ordering_stage_tab_children/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_stage_tab_children/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_stage_tab_children_remove_root/compile.sh b/tests/tests/swfs/avm2/tab_ordering_stage_tab_children_remove_root/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_stage_tab_children_remove_root/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/tab_ordering_tabbable/compile.sh b/tests/tests/swfs/avm2/tab_ordering_tabbable/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/tab_ordering_tabbable/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/text_run/compile.sh b/tests/tests/swfs/avm2/text_run/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/text_run/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/avm2/textline_inapplicable_properties/compile.sh b/tests/tests/swfs/avm2/textline_inapplicable_properties/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/avm2/textline_inapplicable_properties/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/visual/focus_highlight/focus_highlight_avm2_button_bounds/compile.sh b/tests/tests/swfs/visual/focus_highlight/focus_highlight_avm2_button_bounds/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/visual/focus_highlight/focus_highlight_avm2_button_bounds/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as diff --git a/tests/tests/swfs/visual/focus_highlight/focus_highlight_empty_clip/compile.sh b/tests/tests/swfs/visual/focus_highlight/focus_highlight_empty_clip/compile.sh new file mode 100755 index 000000000..839098f16 --- /dev/null +++ b/tests/tests/swfs/visual/focus_highlight/focus_highlight_empty_clip/compile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker run -it --rm -v ${PWD}:/app instrumentisto/flex-sdk mxmlc -output test.swf -compiler.debug=true Test.as