intel/compiler/test: use TEST_DEBUG env var consistently
Other tests use the same environment variable to decide whether they should print debugging information. Will quiet Coverity's "'Constant' variable guards dead code". Signed-off-by: Marcin Ślusarz <marcin.slusarz@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6126>
This commit is contained in:

committed by
Marge Bot

parent
289cb6b59a
commit
c7a9dc76dc
@@ -105,7 +105,7 @@ void copy_propagation_test::SetUp()
|
|||||||
static void
|
static void
|
||||||
copy_propagation(vec4_visitor *v)
|
copy_propagation(vec4_visitor *v)
|
||||||
{
|
{
|
||||||
bool print = false;
|
const bool print = getenv("TEST_DEBUG");
|
||||||
|
|
||||||
if (print) {
|
if (print) {
|
||||||
fprintf(stderr, "instructions before:\n");
|
fprintf(stderr, "instructions before:\n");
|
||||||
|
@@ -103,7 +103,7 @@ void dead_code_eliminate_test::SetUp()
|
|||||||
static void
|
static void
|
||||||
dead_code_eliminate(vec4_visitor *v)
|
dead_code_eliminate(vec4_visitor *v)
|
||||||
{
|
{
|
||||||
bool print = false;
|
const bool print = getenv("TEST_DEBUG");
|
||||||
|
|
||||||
if (print) {
|
if (print) {
|
||||||
fprintf(stderr, "instructions before:\n");
|
fprintf(stderr, "instructions before:\n");
|
||||||
|
@@ -108,7 +108,7 @@ void register_coalesce_test::SetUp()
|
|||||||
static void
|
static void
|
||||||
_register_coalesce(vec4_visitor *v, const char *func)
|
_register_coalesce(vec4_visitor *v, const char *func)
|
||||||
{
|
{
|
||||||
bool print = false;
|
const bool print = getenv("TEST_DEBUG");
|
||||||
|
|
||||||
if (print) {
|
if (print) {
|
||||||
printf("%s: instructions before:\n", func);
|
printf("%s: instructions before:\n", func);
|
||||||
|
Reference in New Issue
Block a user