Disable profile and compat 32-bit c++ sanitizer tests

These tests are known to be faulty. These fatures aren't ready.
They tend to break to unrelated changes to the codebase.

Base Clang and GCC are in general dated to use with sanitizers as these
features are being fixed on HEAD versions of both compilers (mostly Clang).
This commit is contained in:
kamil 2018-07-16 07:27:26 +00:00
parent e77b94561b
commit b4d61ce68e
11 changed files with 28 additions and 28 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_double_free.sh,v 1.1 2018/04/04 23:53:26 kamil Exp $
# $NetBSD: t_asan_double_free.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -202,10 +202,10 @@ atf_init_test_cases()
}
atf_add_test_case double_free
atf_add_test_case double_free_profile
# atf_add_test_case double_free_profile
atf_add_test_case double_free_pic
atf_add_test_case double_free_pie
atf_add_test_case double_free32
# atf_add_test_case double_free32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_global_buffer_overflow.sh,v 1.1 2018/04/04 23:53:26 kamil Exp $
# $NetBSD: t_asan_global_buffer_overflow.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -201,10 +201,10 @@ atf_init_test_cases()
}
atf_add_test_case global_buffer_overflow
atf_add_test_case global_buffer_overflow_profile
# atf_add_test_case global_buffer_overflow_profile
atf_add_test_case global_buffer_overflow_pic
atf_add_test_case global_buffer_overflow_pie
atf_add_test_case global_buffer_overflow32
# atf_add_test_case global_buffer_overflow32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_heap_overflow.sh,v 1.1 2018/04/04 23:53:26 kamil Exp $
# $NetBSD: t_asan_heap_overflow.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -202,10 +202,10 @@ atf_init_test_cases()
}
atf_add_test_case heap_overflow
atf_add_test_case heap_overflow_profile
# atf_add_test_case heap_overflow_profile
atf_add_test_case heap_overflow_pic
atf_add_test_case heap_overflow_pie
atf_add_test_case heap_overflow32
# atf_add_test_case heap_overflow32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_off_by_one.sh,v 1.1 2018/04/04 23:53:26 kamil Exp $
# $NetBSD: t_asan_off_by_one.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -223,10 +223,10 @@ atf_init_test_cases()
}
atf_add_test_case off_by_one
atf_add_test_case off_by_one_profile
# atf_add_test_case off_by_one_profile
atf_add_test_case off_by_one_pic
atf_add_test_case off_by_one_pie
atf_add_test_case off_by_one32
# atf_add_test_case off_by_one32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_poison.sh,v 1.1 2018/04/11 03:25:25 kamil Exp $
# $NetBSD: t_asan_poison.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -267,10 +267,10 @@ atf_init_test_cases()
}
atf_add_test_case poison
atf_add_test_case poison_profile
# atf_add_test_case poison_profile
atf_add_test_case poison_pic
atf_add_test_case poison_pie
atf_add_test_case poison32
# atf_add_test_case poison32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -1,4 +1,4 @@
# $NetBSD: t_asan_uaf.sh,v 1.1 2018/04/04 23:53:26 kamil Exp $
# $NetBSD: t_asan_uaf.sh,v 1.2 2018/07/16 07:27:26 kamil Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@ -195,10 +195,10 @@ atf_init_test_cases()
}
atf_add_test_case uaf
atf_add_test_case uaf_profile
# atf_add_test_case uaf_profile
atf_add_test_case uaf_pic
atf_add_test_case uaf_pie
atf_add_test_case uaf32
# atf_add_test_case uaf32
# static option not supported
# -static and -fsanitize=address can't be used together for compilation
# (gcc version 5.4.0 and clang 7.1) tested on April 2nd 2018.

View File

@ -190,8 +190,8 @@ atf_init_test_cases()
return 0
}
atf_add_test_case int_add_overflow
atf_add_test_case int_add_overflow_profile
# atf_add_test_case int_add_overflow_profile
atf_add_test_case int_add_overflow_pie
atf_add_test_case int_add_overflow_pic
atf_add_test_case int_add_overflow32
# atf_add_test_case int_add_overflow32
}

View File

@ -183,8 +183,8 @@ atf_init_test_cases()
return 0
}
atf_add_test_case int_divzero
atf_add_test_case int_divzero_profile
# atf_add_test_case int_divzero_profile
atf_add_test_case int_divzero_pie
atf_add_test_case int_divzero_pic
atf_add_test_case int_divzero32
# atf_add_test_case int_divzero32
}

View File

@ -190,8 +190,8 @@ atf_init_test_cases()
return 0
}
atf_add_test_case int_neg_overflow
atf_add_test_case int_neg_overflow_profile
# atf_add_test_case int_neg_overflow_profile
atf_add_test_case int_neg_overflow_pie
atf_add_test_case int_neg_overflow_pic
atf_add_test_case int_neg_overflow32
# atf_add_test_case int_neg_overflow32
}

View File

@ -190,8 +190,8 @@ atf_init_test_cases()
return 0
}
atf_add_test_case int_sub_overflow
atf_add_test_case int_sub_overflow_profile
# atf_add_test_case int_sub_overflow_profile
atf_add_test_case int_sub_overflow_pie
atf_add_test_case int_sub_overflow_pic
atf_add_test_case int_sub_overflow32
# atf_add_test_case int_sub_overflow32
}

View File

@ -187,8 +187,8 @@ atf_init_test_cases()
return 0
}
atf_add_test_case vla_out_of_bounds
atf_add_test_case vla_out_of_bounds_profile
# atf_add_test_case vla_out_of_bounds_profile
atf_add_test_case vla_out_of_bounds_pie
atf_add_test_case vla_out_of_bounds_pic
atf_add_test_case vla_out_of_bounds32
# atf_add_test_case vla_out_of_bounds32
}