Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: test/cctest/SConscript

Issue 3582017: Revert strtod fast-case change (r5603) because of Windows compilation... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/strtod.cc ('k') | test/cctest/test-strtod.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'test-log.cc', 63 'test-log.cc',
64 'test-log-utils.cc', 64 'test-log-utils.cc',
65 'test-mark-compact.cc', 65 'test-mark-compact.cc',
66 'test-parsing.cc', 66 'test-parsing.cc',
67 'test-profile-generator.cc', 67 'test-profile-generator.cc',
68 'test-regexp.cc', 68 'test-regexp.cc',
69 'test-serialize.cc', 69 'test-serialize.cc',
70 'test-sockets.cc', 70 'test-sockets.cc',
71 'test-spaces.cc', 71 'test-spaces.cc',
72 'test-strings.cc', 72 'test-strings.cc',
73 'test-strtod.cc',
74 'test-thread-termination.cc', 73 'test-thread-termination.cc',
75 'test-threads.cc', 74 'test-threads.cc',
76 'test-type-info.cc', 75 'test-type-info.cc',
77 'test-unbound-queue.cc', 76 'test-unbound-queue.cc',
78 'test-utils.cc', 77 'test-utils.cc',
79 'test-version.cc' 78 'test-version.cc'
80 ], 79 ],
81 'arch:arm': [ 80 'arch:arm': [
82 'test-assembler-arm.cc', 81 'test-assembler-arm.cc',
83 'test-disasm-arm.cc' 82 'test-disasm-arm.cc'
(...skipping 21 matching lines...) Expand all
105 context.ApplyEnvOverrides(env) 104 context.ApplyEnvOverrides(env)
106 # There seems to be a glitch in the way scons decides where to put 105 # There seems to be a glitch in the way scons decides where to put
107 # PDB files when compiling using MSVC so we specify it manually. 106 # PDB files when compiling using MSVC so we specify it manually.
108 # This should not affect any other platforms. 107 # This should not affect any other platforms.
109 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 108 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
110 PDB='cctest.exe.pdb') 109 PDB='cctest.exe.pdb')
111 110
112 111
113 program = Build() 112 program = Build()
114 Return('program') 113 Return('program')
OLDNEW
« no previous file with comments | « src/strtod.cc ('k') | test/cctest/test-strtod.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698