diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-28 19:10:07 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-28 19:10:07 +0000 |
commit | 974fca6fbe75ff39f91dda114a3b06f686c68f34 (patch) | |
tree | 6105bd349c0c40bde818cde5c9554384783e9ae6 | |
parent | 77fef2b26702f8178525db3d4a3fa7b5bd3725c3 (diff) |
Move test in its own directory.
-rw-r--r-- | regress/misc/exceptions/Makefile | 7 | ||||
-rw-r--r-- | regress/misc/exceptions/simple/Makefile | 6 | ||||
-rw-r--r-- | regress/misc/exceptions/simple/exceptions.cc (renamed from regress/misc/exceptions/exceptions.cc) | 2 |
3 files changed, 9 insertions, 6 deletions
diff --git a/regress/misc/exceptions/Makefile b/regress/misc/exceptions/Makefile index af6a22ff04b..d4d1d960d66 100644 --- a/regress/misc/exceptions/Makefile +++ b/regress/misc/exceptions/Makefile @@ -1,6 +1,3 @@ -# $OpenBSD: Makefile,v 1.1 2002/12/04 05:02:15 art Exp $ +SUBDIR+= simple -PROG= exceptions -SRCS= exceptions.cc - -.include <bsd.regress.mk> +.include <bsd.subdir.mk> diff --git a/regress/misc/exceptions/simple/Makefile b/regress/misc/exceptions/simple/Makefile new file mode 100644 index 00000000000..9008d189a70 --- /dev/null +++ b/regress/misc/exceptions/simple/Makefile @@ -0,0 +1,6 @@ +# $OpenBSD: Makefile,v 1.1 2007/01/28 19:10:06 kettenis Exp $ + +PROG= exceptions +SRCS= exceptions.cc + +.include <bsd.regress.mk> diff --git a/regress/misc/exceptions/exceptions.cc b/regress/misc/exceptions/simple/exceptions.cc index 273a88a287e..35a619500b0 100644 --- a/regress/misc/exceptions/exceptions.cc +++ b/regress/misc/exceptions/simple/exceptions.cc @@ -1,4 +1,4 @@ -/* $OpenBSD: exceptions.cc,v 1.1 2002/12/04 05:02:15 art Exp $ */ +/* $OpenBSD: exceptions.cc,v 1.1 2007/01/28 19:10:06 kettenis Exp $ */ /* * Written by Artur Grabowski <art@openbsd.org> 2002 Public Domain */ |