1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-12 01:42:37 -07:00

New iv system

Copied from Perforce
 Change: 20767
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Tucker 1999-05-04 15:28:05 +01:00
parent a2651221ad
commit eecd8be302
15 changed files with 22 additions and 37 deletions

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:arg.h(trunk.2) $
arg.h
useful things for arg-err tests
*/
@ -6,7 +6,7 @@ arg.h
#ifndef arg_h
#define arg_h
#include "mps.h"
#include "testlib.h"
#define UNALIGNED ((mps_addr_t) (((char *) NULL) + 1))

View file

@ -1,10 +1,8 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:awlfmt.c(trunk.4) $
awlfmt.c
A format simlar to newfmt, but for the awl pool
*/
#include "mps.h"
#include "testlib.h"
#include "awlfmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:awlfmt.h(trunk.2) $
awlfmt.h
A format for the awl pool
*/
@ -6,7 +6,7 @@ awlfmt.h
#ifndef awlfmt_h
#define awlfmt_h
#include "mps.h"
#include "testlib.h"
extern int formatcomments;
extern int checkcomments;

View file

@ -1,8 +1,6 @@
/* $HopeName: MMQA_harness!testlib:epvmfmt.c(trunk.5) $
/* $HopeName: MMQA_harness!testlib:epvmfmt.c(trunk.6) $
*/
#include "mps.h"
#include "testlib.h"
#include "epvmfmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName: MMQA_harness!testlib:epvmfmt.h(trunk.3) $
/* $HopeName: MMQA_harness!testlib:epvmfmt.h(trunk.4) $
epvmfmt.h
Format for objects in the EPVM pool.
*/
@ -6,7 +6,7 @@ epvmfmt.h
#ifndef epvmfmt_h
#define epvmfmt_h
#include "mps.h"
#include "testlib.h"
extern int alloccomments;

View file

@ -1,11 +1,9 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:exfmt.c(trunk.4) $
exfmt.c
A format for the awl and amc pools which can cope with exact references
See comments in header file for usage.
*/
#include "mps.h"
#include "testlib.h"
#include "exfmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:exfmt.h(trunk.3) $
exfmt.h
A format for the awl and amc pools, which will work without
register roots. To use it, you must take precautions. You must
@ -15,7 +15,7 @@ exfmt.h
#ifndef exfmt_h
#define exfmt_h
#include "mps.h"
#include "testlib.h"
extern int formatcomments;
extern int checkcomments;

View file

@ -1,10 +1,8 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:fastfmt.c(trunk.3) $
fastfmt.c
See comments in header file for usage.
*/
#include "mps.h"
#include "testlib.h"
#include "fastfmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:fastfmt.h(trunk.2) $
fastfmt.h
Format like rankfmt (see rankfmt.h) and with same object
structure, but with no checking or comments.
@ -8,7 +8,7 @@ fastfmt.h
#ifndef fastfmt_h
#define fastfmt_h
#include "mps.h"
#include "testlib.h"
extern mps_addr_t exfmt_root;

View file

@ -1,10 +1,8 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:lofmt.c(trunk.3) $
lofmt.c
A format for pool class LO
*/
#include "mps.h"
#include "testlib.h"
#include "lofmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:lofmt.h(trunk.2) $
lofmt.h
A format for the LO pool class. We have to allow for copying
and forwarding, but scan should never be called.
@ -7,7 +7,7 @@ lofmt.h
#ifndef lofmt_h
#define lofmt_h
#include "mps.h"
#include "testlib.h"
extern int alloclocomments;
extern int allowlocopies;

View file

@ -1,10 +1,8 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:myfmt.c(trunk.2) $
myfmt.c
a format for scannable objects
*/
#include "mps.h"
#include "testlib.h"
#include "myfmt.h"
#include <string.h>
#include <stdio.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:myfmt.h(trunk.2) $
myfmt.h
a format for scannable objects
*/
@ -6,7 +6,6 @@ myfmt.h
#ifndef myfmt_h
#define myfmt_h
#include "mps.h"
#include "testlib.h"
/* some options on the format are controlled by global

View file

@ -1,11 +1,9 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:newfmt.c(trunk.3) $
newfmt.c
My attempt to write a format using unions &c to avoid
nasty casting all over the place
*/
#include "mps.h"
#include "testlib.h"
#include "newfmt.h"
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $HopeName$
/* $HopeName: MMQA_harness!testlib:newfmt.h(trunk.2) $
newfmt.h
A nice format with graph checking and statistics
*/
@ -6,7 +6,7 @@ newfmt.h
#ifndef newfmt_h
#define newfmt_h
#include "mps.h"
#include "testlib.h"
extern int formatcomments;
extern int checkcomments;