2803d78dfd
Instead of passing a size in bytes to the allocation function, we now have a templatized Alloc function: zone->Alloc<Type>(len) This is better for security, as we can check for integer overflow in the size computation before performing the allocation. Before, we often failed to check this. Review URL: https://chromiumcodereview.appspot.com//10836061 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@10254 260f80e4-7a28-3924-810f-c04153c831b5
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
# When a spawned isolate throws an uncaught exception, we terminate the vm.
|
|
cc/RunLoop_ExceptionChild: Fail
|
|
|
|
# These tests are expected to crash on all platforms.
|
|
cc/ArrayNew_Overflow_Crash: Crash
|
|
cc/AllocGeneric_Overflow: Crash
|
|
cc/SNPrint_BadArgs: Crash
|
|
|
|
[ $arch == x64 ]
|
|
cc/IsolateInterrupt: Skip
|
|
|
|
# The following section refers to the dart vm tests which live under
|
|
# runtime/tests/vm/dart.
|
|
|
|
[ $system == windows ]
|
|
cc/Dart2JSCompileAll: Skip
|
|
|
|
[ $runtime == drt ]
|
|
dart/import_map_test: Skip
|
|
dart/isolate_mirror_local_test: Skip
|
|
|
|
[ $compiler == dart2js || $compiler == frog || $compiler == dartc ]
|
|
dart/import_map_test: Skip # compilers not aware of import maps.
|
|
dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors
|
|
dart/byte_array_test: Skip # compilers not aware of byte arrays
|
|
|
|
[ $compiler == dart2dart ]
|
|
# Skip until we stabilize language tests.
|
|
*: Skip
|
|
|
|
[ $arch == arm ]
|
|
dart/*: Skip
|
|
|
|
[ $arch == simarm ]
|
|
dart/*: Skip
|