sysctl.sh (14e77332e74603efab8347c89d3cda447c3b97c9) | sysctl.sh (6cad1ecd4e3213d892b70afa999a81849d1f0206) |
---|---|
1#!/bin/bash | 1#!/bin/bash |
2# SPDX-License-Identifier: GPL-2.0-or-later OR copyleft-next-0.3.1 |
|
2# Copyright (C) 2017 Luis R. Rodriguez <mcgrof@kernel.org> | 3# Copyright (C) 2017 Luis R. Rodriguez <mcgrof@kernel.org> |
3# 4# This program is free software; you can redistribute it and/or modify it 5# under the terms of the GNU General Public License as published by the Free 6# Software Foundation; either version 2 of the License, or at your option any 7# later version; or, when distributed separately from the Linux kernel or 8# when incorporated into other software packages, subject to the following 9# license: 10# 11# This program is free software; you can redistribute it and/or modify it 12# under the terms of copyleft-next (version 0.3.1 or later) as published 13# at http://copyleft-next.org/. | |
14 15# This performs a series tests against the proc sysctl interface. 16 17# Kselftest framework requirement - SKIP code is 4. 18ksft_skip=4 19 20TEST_NAME="sysctl" 21TEST_DRIVER="test_${TEST_NAME}" --- 973 unchanged lines hidden --- | 4 5# This performs a series tests against the proc sysctl interface. 6 7# Kselftest framework requirement - SKIP code is 4. 8ksft_skip=4 9 10TEST_NAME="sysctl" 11TEST_DRIVER="test_${TEST_NAME}" --- 973 unchanged lines hidden --- |