# HG changeset patch # User david.stone@nokia.com # Date 1260530751 0 # Node ID 9287c3bfa3eb965f25b1bd052d14aa227cbc2eba # Parent 7c9f7096d35773b8d200ea0b3c4da6a5ac26855f Removed headers that are not needed diff -r 7c9f7096d357 -r 9287c3bfa3eb sbsv2/raptor/test/timing_tests/parse_time_exports_mmps.py --- a/sbsv2/raptor/test/timing_tests/parse_time_exports_mmps.py Wed Dec 09 14:58:07 2009 +0000 +++ b/sbsv2/raptor/test/timing_tests/parse_time_exports_mmps.py Fri Dec 11 11:25:51 2009 +0000 @@ -9,49 +9,14 @@ pass bldinf_path = ReplaceEnvs("$(SBS_HOME)/test/timing_tests/test_resources/parse_time/bld.inf") bldinf = open(bldinf_path, "w") - bldinf_content = """/* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* Component description file for parse timing -* -*/ - -prj_mmpfiles + bldinf_content = """prj_mmpfiles """ test_dir = ReplaceEnvs("$(SBS_HOME)/test/timing_tests/test_resources/parse_time") for number in range(0, 250): mmp_path = ("parse_timing_" + str(number).zfill(3) + ".mmp") mmp_file = open((test_dir + "/" + mmp_path), "w") - mmp_file.write("""/* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* Project description file for parse timing -* -*/ - -targettype none""") + mmp_file.write("""targettype none +""") mmp_file.close() bldinf_content += (mmp_path + "\n")