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

Side by Side Diff: test/cctest/SConscript

Issue 3557010: Reapply r5603 with additional fix: use OS::StrNCpy instead of posix strncpy. (Closed)
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
« 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',
73 'test-thread-termination.cc', 74 'test-thread-termination.cc',
74 'test-threads.cc', 75 'test-threads.cc',
75 'test-type-info.cc', 76 'test-type-info.cc',
76 'test-unbound-queue.cc', 77 'test-unbound-queue.cc',
77 'test-utils.cc', 78 'test-utils.cc',
78 'test-version.cc' 79 'test-version.cc'
79 ], 80 ],
80 'arch:arm': [ 81 'arch:arm': [
81 'test-assembler-arm.cc', 82 'test-assembler-arm.cc',
82 'test-disasm-arm.cc' 83 'test-disasm-arm.cc'
(...skipping 21 matching lines...) Expand all
104 context.ApplyEnvOverrides(env) 105 context.ApplyEnvOverrides(env)
105 # There seems to be a glitch in the way scons decides where to put 106 # There seems to be a glitch in the way scons decides where to put
106 # PDB files when compiling using MSVC so we specify it manually. 107 # PDB files when compiling using MSVC so we specify it manually.
107 # This should not affect any other platforms. 108 # This should not affect any other platforms.
108 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 109 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
109 PDB='cctest.exe.pdb') 110 PDB='cctest.exe.pdb')
110 111
111 112
112 program = Build() 113 program = Build()
113 Return('program') 114 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