Reviewers: Christian Plesner Hansen, Description: Differentiating the file names between different serialization tests to avoid conflict when testing in parallel.
Please review this at http://codereview.chromium.org/20079 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/testcfg.py Index: test/cctest/testcfg.py =================================================================== --- test/cctest/testcfg.py (revision 1227) +++ test/cctest/testcfg.py (working copy) @@ -51,6 +51,7 @@ def BuildCommand(self, name): serialization_file = join('obj', 'test', self.mode, 'serdes') + serialization_file += '_' + self.GetName() serialization_option = '--testing_serialization_file=' + serialization_file result = [ self.executable, name, serialization_option ] if self.mode == 'debug': --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
