Mercurial > hg > xemacs-beta
annotate netinstall/tar.h @ 5069:14f0dd1fabdb
move test-harness to lisp/ directory so it gets byte-compiled
-------------------- ChangeLog entries follow: --------------------
etc/ChangeLog addition:
2010-02-22 Ben Wing <ben@xemacs.org>
* dbxrc.in:
test-harness.el is in lisp directory now.
lisp/ChangeLog addition:
2010-02-22 Ben Wing <ben@xemacs.org>
* test-harness.el:
* test-harness.el (test-harness-from-buffer):
* test-harness.el (batch-test-emacs):
Move file from tests/automated into lisp/ so it gets
byte-compiled. This significantly reduces the amount of extra
crap in outputted backtraces. Delete hack in batch-test-emacs to
look for test-harness.el in the test directory since it's not there
any more.
Also, in `Check-Message', incorporate call to `Skip-Test-Unless'
in the macro output rather than its body, to avoid problems byte-
compiling the file -- `Skip-Test-Unless' isn't available in the
environment during byte-compilation so we can't call it then.
src/ChangeLog addition:
2010-02-22 Ben Wing <ben@xemacs.org>
* .gdbinit.in.in:
* Makefile.in.in (batch_test_emacs):
test-harness.el is in lisp directory now so change how we call it.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 22 Feb 2010 22:04:55 -0600 |
parents | 3078fd1074e8 |
children |
rev | line source |
---|---|
448 | 1 /* |
2 * Copyright (c) 2000, Red Hat, Inc. | |
3 * | |
4 * This program is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * A copy of the GNU General Public License can be found at | |
10 * http://www.gnu.org/ | |
11 * | |
12 * Written by DJ Delorie <dj@cygnus.com> | |
13 * | |
14 */ | |
15 | |
16 #ifndef __TAR_H_ | |
17 #define __TAR_H_ | |
18 | |
19 /* Only one tarfile may be open at a time. gzipped files handled | |
20 automatically */ | |
21 | |
22 /* returns zero on success, nonzero on failure */ | |
23 int tar_open (char *pathname); | |
24 | |
25 /* returns pointer to static buf containing name of next file */ | |
26 char * tar_next_file (); | |
27 | |
28 /* byte position in [compressed] file */ | |
29 int tar_ftell (); | |
30 | |
31 /* pass adjusted path, returns zero on success, nonzero on failure */ | |
32 int tar_read_file (char *path); | |
33 | |
34 /* closes the file */ | |
35 int tar_close (); | |
36 | |
37 /* pass path to tar file and from/to pairs for path prefix (NULLs at | |
38 end , returns zero if completely successful, nonzero (counts | |
39 errors) on failure */ | |
40 int tar_auto (char *pathname, char **map); | |
41 | |
42 int tar_mkdir_p (int isadir, char *path); | |
43 | |
44 /* | |
45 extern int _tar_verbose; | |
46 extern FILE * _tar_vfile; | |
47 */ | |
48 | |
49 #endif |