/* Copyright (c) 2001 Matej Pfajfar.
* Copyright (c) 2001-2004, Roger Dingledine.
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file risky_options.c
* \brief List compile-time options that might make Tor less reliable.
**/
/** A space-separated list of the compile-time options might make Tor less
* reliable or secure. These options mainly exist for testing or debugging.
*/
const char risky_option_list =
""
" --disable-asserts-in-test"
" TOR_UNIT_TESTS"
" --enable-restart-debugging"
" --enable-all-bugs-are-fatal"
" --disable-memory-sentinels"
;