0

Alljoyn code has a number of logging functions, what is the command line environment variable that needs to be added to get them to print when running gtest. The scons command I am running is:

scons OS=darwin CPU=x86 BR=on BINDINGS=cpp SERVICES="about,config,notification,controlpanel" BUILD_SERVICES_SAMPLES=on SDKROOT=$PWD GTEST_DIR=‘/Users/Finch/GTEST/googletest'
MikeF
  • 764
  • 9
  • 26
  • You'll likely need to look at the way Alljoyn has used SCons and how to get the variable you want propagated to the Environment() which is being used to run gtest. – bdbaddog Mar 29 '16 at 19:13

1 Answers1

0

The environmental variable you need to set is ER_DEBUG_ALL.

export ER_DEBUG_ALL=1

You can get different levels of debugging from 1 to 7.

ginsengtang
  • 751
  • 1
  • 7
  • 17