902e725a9d
Fix test cases: ip-neigh-sanity-test: no failed item after delete/flush ip-rule-sanity-test: fix invalid tos ip-l2tp-sanity-test: enable l2tp_* modules ip-link-sanity-test: remove deprecated team, enable vcan module Disable ip-fou-sanity-test as the module fou has been deprecated Required packages: Remove bridge-utils as deprecated Add kernel-modules-extra Signed-off-by: Mingyu Shi <mshi@redhat.com>
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#!/bin/bash
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
|
# ~~~
|
|
# runtest.sh of /CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
|
# Description: Test basic ip l2tp funcionality
|
|
#
|
|
# Author: Susant Sahani <susant@redhat.com>
|
|
# Copyright (c) 2018 Red Hat, Inc.
|
|
#~~~
|
|
|
|
export TEST=/CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
|
export TESTVERSION=1.0
|
|
|
|
BUILT_FILES=
|
|
|
|
FILES=$(METADATA) runtest.sh Makefile PURPOSE ip-l2tp-tests.py
|
|
|
|
.PHONY: all install download clean
|
|
|
|
run: $(FILES) build
|
|
./runtest.sh
|
|
|
|
build: $(BUILT_FILES)
|
|
test -x runtest.sh || chmod a+x runtest.sh
|
|
|
|
clean:
|
|
rm -f *~ $(BUILT_FILES)
|
|
|
|
|
|
include /usr/share/rhts/lib/rhts-make.include
|
|
|
|
$(METADATA): Makefile
|
|
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
|
@echo "Name: $(TEST)" >> $(METADATA)
|
|
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
@echo "Description: Test basic ip l2tp funcionality" >> $(METADATA)
|
|
@echo "Type: Sanity" >> $(METADATA)
|
|
@echo "TestTime: 15m" >> $(METADATA)
|
|
@echo "RunFor: iproute" >> $(METADATA)
|
|
@echo "Requires: iproute" >> $(METADATA)
|
|
@echo "Priority: Normal" >> $(METADATA)
|
|
@echo "License: GPLv2" >> $(METADATA)
|
|
@echo "Confidential: no" >> $(METADATA)
|
|
@echo "Destructive: no" >> $(METADATA)
|
|
|
|
rhts-lint $(METADATA)
|