1# Copyright 2016 The Fuchsia Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# disabled for now
6ifeq (1,2)
7
8LOCAL_DIR := $(GET_LOCAL_DIR)
9
10MODULE := $(LOCAL_DIR)
11
12MODULE_TYPE := userapp
13
14MODULE_SRCS += \
15    $(LOCAL_DIR)/bad-kernel-access.c
16
17MODULE_NAME := bad-kernel-access-test-crashes
18
19MODULE_STATIC_LIBS := system/ulib/ddk
20MODULE_LIBS := system/ulib/fdio system/ulib/zircon system/ulib/c
21
22include make/module.mk
23
24endif
25