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