summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2008-07-28 12:35:08 +0200
committerThomas Gleixner <tglx@linutronix.de>2008-07-28 12:35:08 +0200
commitd14c3da7c8b465f7f4cd8d51fcc78cb738dd088c (patch)
treeafcab556cd466751fc77edcce3b8a642aca0b516
parentdb07df3e98359dad9116bca0d3954d35476e4f50 (diff)
downloadrt-tests-d14c3da7c8b465f7f4cd8d51fcc78cb738dd088c.tar.gz
release v0.26v0.26
Remove the rpm spec file from git as it is autogenerated. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--Makefile4
-rw-r--r--rt-tests.spec45
2 files changed, 2 insertions, 47 deletions
diff --git a/Makefile b/Makefile
index 3b313d7..68437ab 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION_STRING = "0.25"
+VERSION_STRING = "0.26"
TARGETS = cyclictest signaltest classic_pi pi_stress
FLAGS = -Wall -Wno-nonnull -O2
@@ -21,7 +21,7 @@ classic_pi: src/pi_tests/classic_pi.c
pi_stress: src/pi_tests/pi_stress.c
$(CC) $(FLAGS) -D_GNU_SOURCE -D VERSION_STRING=\"$(VERSION_STRING)\" $^ -o $@ $(LIBS)
-CLEANUP = $(TARGETS) *.o .depend *.*~ ChangeLog *.orig *.rej
+CLEANUP = $(TARGETS) *.o .depend *.*~ ChangeLog *.orig *.rej rt-tests.spec
clean:
for F in $(CLEANUP); do find -type f -iname $$F | xargs rm -f; done
diff --git a/rt-tests.spec b/rt-tests.spec
deleted file mode 100644
index c6a9057..0000000
--- a/rt-tests.spec
+++ /dev/null
@@ -1,45 +0,0 @@
-Summary: Programs that test various rt-features
-Name: rt-tests
-Version: 0.22
-Release: 1
-License: GPLv2
-Group: Development/Tools
-URL: git://git.kernel.org/pub/scm/linux/kernel/git/tglx/rt-tests.git
-Source0: %{name}-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Obsoletes: cyclictest signaltest pi_tests
-
-%description
-A set of programs that test and measure various components of "realtime"
-kernel behavior, such as timer latency, signal latency and the functioning
-of priority-inheritance mutexes.
-
-%prep
-%setup -qn rt-tests
-
-%build
-make
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT/usr/bin
-mkdir -p $RPM_BUILD_ROOT/usr/share/man/man8
-make DESTDIR=$RPM_BUILD_ROOT/usr install
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%files
-%defattr(-,root,root,-)
-/usr/bin/classic_pi
-/usr/bin/cyclictest
-/usr/bin/pi_stress
-/usr/bin/signaltest
-%doc
-/usr/share/man/man8/cyclictest.8.gz
-/usr/share/man/man8/pi_stress.8.gz
-
-%changelog
-* Thu Jan 03 2008 Clark Williams <williams@redhat.com> - 0.18-1
-- Initial build.
-