Browse Source

Clarify toolset warning about bash_profile.sh

Hamilton Turner 11 years ago
parent
commit
e491055452
1 changed files with 2 additions and 2 deletions
  1. 2 2
      toolset/benchmark/framework_test.py

+ 2 - 2
toolset/benchmark/framework_test.py

@@ -443,7 +443,7 @@ class FrameworkTest:
     # Load profile for this installation
     profile="%s/bash_profile.sh" % self.directory
     if not os.path.exists(profile):
-      logging.warning("Framework %s does not have a bash_profile" % self.name)
+      logging.warning("Directory %s does not have a bash_profile.sh" % self.directory)
       profile="$FWROOT/config/benchmark_profile"
 
     setup_util.replace_environ(config=profile, 
@@ -463,7 +463,7 @@ class FrameworkTest:
     # Load profile for this installation
     profile="%s/bash_profile.sh" % self.directory
     if not os.path.exists(profile):
-      logging.warning("Framework %s does not have a bash_profile" % self.name)
+      logging.warning("Directory %s does not have a bash_profile.sh" % self.directory)
       profile="$FWROOT/config/benchmark_profile"
     
     setup_util.replace_environ(config=profile,