32_rusttests_debug.py (951B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 import os 6 7 config = { 8 "debug_build": True, 9 "stage_platform": "linux-rusttests-debug", 10 #### 32 bit build specific ##### 11 "env": { 12 "MOZBUILD_STATE_PATH": os.path.join(os.getcwd(), ".mozbuild"), 13 "DISPLAY": ":2", 14 "HG_SHARE_BASE_DIR": "/builds/hg-shared", 15 "MOZ_OBJDIR": "%(abs_obj_dir)s", 16 "MOZ_CRASHREPORTER_NO_REPORT": "1", 17 "LC_ALL": "C", 18 # 32 bit specific 19 "PATH": "/usr/local/bin:/bin:\ 20 /usr/bin:/usr/local/sbin:/usr/sbin:/sbin", 21 "LD_LIBRARY_PATH": "%(abs_obj_dir)s/dist/bin", 22 "XPCOM_DEBUG_BREAK": "stack-and-abort", 23 "TINDERBOX_OUTPUT": "1", 24 }, 25 "app_name": "tools/rusttests", 26 "disable_package_metrics": True, 27 ####################### 28 }