1#!/bin/sh 2# Copyright 2016 The Chromium OS Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5# args: -v -C / -k tmpfs,%T,tmpfs -b /dev/null,%T/test_null 6 7SRCDIR="$(dirname "$0")" 8 9. "${SRCDIR}"/common.sh 10 11# Check that the "test_null" bind mount has been created. 12grep "test_null" /proc/mounts || die "test_null not mounted" 13exit 0 14 15