blob: f1f2932cac55bf7d2c05a5ca076d7ebe13fa8073 [file] [edit]
# REQUIRES: python, asserts, !system-windows
# Test that when a module is listed in target.auto-load-scripts-for-modules with 'true',
# its scripting resources are loaded even when target.load-script-from-symbol-file
# is false.
# RUN: split-file %s %t
# RUN: %clang_host %t/main.c -o %t/TestModule.out
# RUN: mkdir -p %t/safe-path/TestModule
# RUN: cp %t/script.py %t/safe-path/TestModule/TestModule.py
# RUN: %lldb -b \
# RUN: -o 'settings set target.load-script-from-symbol-file false' \
# RUN: -o 'settings append testing.safe-auto-load-paths %t/safe-path' \
# RUN: -o 'settings set target.auto-load-scripts-for-modules TestModule=true' \
# RUN: -o 'target create %t/TestModule.out' 2>&1 | FileCheck %s
# CHECK: AUTOLOAD_SUCCESS
#--- main.c
int main() { return 0; }
#--- script.py
import sys
def __lldb_init_module(debugger, internal_dict):
print("AUTOLOAD_SUCCESS", file=sys.stderr)