diff options
Diffstat (limited to 'atf-c/check.c')
| -rw-r--r-- | atf-c/check.c | 26 | 
1 files changed, 11 insertions, 15 deletions
diff --git a/atf-c/check.c b/atf-c/check.c index d7a908d3c56a..38afdf3743a6 100644 --- a/atf-c/check.c +++ b/atf-c/check.c @@ -1,7 +1,4 @@ -/* - * Automated Testing Framework (atf) - * - * Copyright (c) 2008 The NetBSD Foundation, Inc. +/* Copyright (c) 2008 The NetBSD Foundation, Inc.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -24,8 +21,9 @@   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER   * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR   * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ + * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  */ + +#include "atf-c/check.h"  #include <sys/wait.h> @@ -37,18 +35,16 @@  #include <unistd.h>  #include "atf-c/build.h" -#include "atf-c/check.h" -#include "atf-c/config.h"  #include "atf-c/defs.h" +#include "atf-c/detail/dynstr.h" +#include "atf-c/detail/env.h" +#include "atf-c/detail/fs.h" +#include "atf-c/detail/list.h" +#include "atf-c/detail/process.h" +#include "atf-c/detail/sanity.h"  #include "atf-c/error.h"  #include "atf-c/utils.h" -#include "detail/dynstr.h" -#include "detail/fs.h" -#include "detail/list.h" -#include "detail/process.h" -#include "detail/sanity.h" -  /* ---------------------------------------------------------------------   * Auxiliary functions.   * --------------------------------------------------------------------- */ @@ -60,7 +56,7 @@ create_tmpdir(atf_fs_path_t *dir)      atf_error_t err;      err = atf_fs_path_init_fmt(dir, "%s/check.XXXXXX", -                               atf_config_get("atf_workdir")); +                               atf_env_get_with_default("TMPDIR", "/tmp"));      if (atf_is_error(err))          goto out;  | 
