From c7914e257394592358b5ff8c34f41c116152104b Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 27 Mar 2017 15:06:39 -0700 Subject: [PATCH] Update scripts for renaming of sky_shell binaries to flutter (#3526) --- sky/tools/flutter_gdb | 4 ++-- testing/run_tests.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sky/tools/flutter_gdb b/sky/tools/flutter_gdb index 84a9093387c9c..3fb897724e5e0 100755 --- a/sky/tools/flutter_gdb +++ b/sky/tools/flutter_gdb @@ -109,8 +109,8 @@ class GdbClient(object): [adb_path, 'forward', 'tcp:%d' % args.gdb_port, 'tcp:%d' % args.gdb_port]) debug_out_path = os.path.join(flutter_root, 'out/%s' % args.local_engine) - if not os.path.exists(os.path.join(debug_out_path, 'libsky_shell.so')): - print 'Unable to find libsky_shell.so. Make sure you have completed a %s build' % args.local_engine + if not os.path.exists(os.path.join(debug_out_path, 'libflutter.so')): + print 'Unable to find libflutter.so. Make sure you have completed a %s build' % args.local_engine return 1 eval_commands = [] diff --git a/testing/run_tests.sh b/testing/run_tests.sh index 52e2f831a2a9d..51ad2b319d7c4 100755 --- a/testing/run_tests.sh +++ b/testing/run_tests.sh @@ -11,8 +11,8 @@ pub get popd # Verify that a failing test returns a failure code. -! out/host_debug_unopt/sky_shell --disable-observatory --disable-diagnostic --non-interactive --enable-checked-mode --packages=flutter/testing/dart/.packages flutter/testing/fail_test.dart +! out/host_debug_unopt/flutter_tester --disable-observatory --disable-diagnostic --non-interactive --enable-checked-mode --packages=flutter/testing/dart/.packages flutter/testing/fail_test.dart for TEST_SCRIPT in flutter/testing/dart/*.dart; do - out/host_debug_unopt/sky_shell --disable-observatory --disable-diagnostic --non-interactive --enable-checked-mode $TEST_SCRIPT + out/host_debug_unopt/flutter_tester --disable-observatory --disable-diagnostic --non-interactive --enable-checked-mode $TEST_SCRIPT done