home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-05-03 | 67.2 KB | 1,914 lines |
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --testrun.com
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- $co :== $user1:[nosc.work.tools.compord]compile_order.exe
- $ set def user1:[nosc.work.tools.compord.tests]
- $ co ((fcycle*.tst), fcycle.rpt)
- $ co ((test1.tst), test1.rpt)
- $ co ((test2.tst), test2.rpt)
- $ co ((test3.tst), test3.rpt)
- $ co ((test4.tst), test4.rpt)
- $ co ((test5.tst), test5.rpt)
- $ co ((test6.tst), test6.rpt)
- $ co ((test7.tst, test8.tst), test78.rpt)
- $ co ((test3.tst), raw.rpt, which_report=> raw)
- $ co ((test3.tst), depend.rpt, which_report=> dependency)
- $ co ((test3.tst), comp.rpt, which_report=> compilation)
- $ co ((test3.tst), rawdep.rpt, which_report=> raw_dependency)
- $ co ((test3.tst), rawcomp.rpt, which_report=> raw_compilation)
- $ co ((test3.tst), units.rpt, which_report=> units_order)
- $ co ((test3.tst), file.rpt, which_report=> file_order)
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test1.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- with jane;
- package lily is
- end;
-
- with lily;
- package william is
- end;
-
- with william;
- package desi is
- end;
-
- with desi;
- package gerry is
- end;
-
- with gerry;
- package tatiana is
- end;
-
- with tatiana;
- package seth is
- end;
-
- with seth;
- package rhonda is
- end;
-
- with rhonda;
- package quincy is
- end;
-
- with quincy;
- package patty is
- end;
-
- with patty;
- package onan is
- end;
-
- with onan;
- package nickolas is
- end;
-
- with nickolas;
- package mike is
- end;
-
- with mike;
- package linda is
- end;
-
- with linda;
- package katie is
- end;
-
- with katie;
- package jeremiah is
- end;
-
- with jeremiah;
- package ivan is
- end;
-
- with ivan;
- package hilda is
- end;
-
- with hilda;
- package gertrude is
- end;
-
- with gertrude;
- package francine is
- end;
-
- with francine;
- package yerra is
- end;
-
- with yerra;
- package xylar is
- end;
-
- with xylar;
- package walace is
- end;
-
- with walace;
- package vanessa is
- end;
-
- with vanessa;
- package ulysses is
- end;
-
- with ulysses;
- package tony is
- end;
-
- with tony;
- package sarah is
- end;
-
- with sarah;
- package richard is
- end;
-
- with richard;
- package querra is
- end;
-
- with querra;
- package paul is
- end;
-
- with paul;
- package oswald is
- end;
-
- with oswald;
- package nora is
- end;
-
- with nora;
- package megan is
- end;
-
- with megan;
- package larry is
- end;
-
- with larry;
- package kerry is
- end;
-
- with kerry;
- package janice is
- end;
-
- with janice;
- package irvin is
- end;
-
- with irvin;
- package harry is
- end;
-
- with harry;
- package gillian is
- end;
-
- with gillian;
- package freida is
- end;
-
- with freida;
- package eloise is
- end;
-
- with eloise;
- package darin is
- end;
-
- with darin;
- package christopher is
- end;
-
- with christopher;
- package barry is
- end barry;
-
- with barry;
- package alice is
- end alice;
-
- with alice;
- package zeus is
- end zeus;
-
- with zeus;
- package yvonne is
- end;
-
- with yvonne;
- package xavier is
- end;
-
- with xavier;
- package warren is
- end;
-
- with warren;
- package veronica is
- end;
-
- with veronica;
- package ulva is
- end;
-
- with ulva;
- package thomas is
- end;
-
- with thomas;
- package samuel is
- end;
-
- with samuel;
- package robin is
- end;
-
- with robin;
- package quentin is
- end;
-
- with quentin;
- package peter is
- end;
-
- with peter;
- package oriel is
- end;
-
- with oriel;
- package nancy is
- end;
-
- with nancy;
- package mary is
- end;
-
- with mary;
- package laura is
- end;
-
- with laura;
- package kevin is
- end;
-
- with kevin;
- package john is
- end;
-
- with john;
- package iris is
- end;
-
- with iris;
- package horace is
- end;
-
- with horace;
- package garet is
- end;
-
- with garet;
- package freddy is
- end;
-
- with freddy;
- package elaine is
- end;
-
- with elaine;
- package david is
- end;
-
- with david;
- package cathy is
- end;
-
- with cathy;
- package boris is
- end boris;
-
- with boris;
- package alana is
- end alana;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test2.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- with packb;
- with procn;
- procedure package test_proc;
-
- with cbgs;
- use cbgs;
- function xyz return string;
-
- procedure test_proc is
- begin
- null;
- end test_proc;
-
- with aPackage;
- with Utilities;
- function xyz return string is
- begin
- null;
- end xyz;
-
- with xyz;
- package small_package is
-
- procedure foo;
- function bar return integer;
-
- end small_package;
-
- with test_proc;
- with Utilities;
- package body small_package is
-
- procedure foo is
- begin
- null;
- end foo;
-
- function bar return integer is
- begin
- null;
- end bar;
-
- end small_package;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test3.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- with packb;
- with procn;
- procedure test_proc;
-
- with cbgs;
- use cbgs;
- function xyz return string;
-
- procedure test_proc is
- begin
- null;
- end test_proc;
-
- with aPackage;
- with Utilities;
- function xyz return string is
- begin
- null;
- end xyz;
-
- with xyz;
- package small_package is
-
- procedure foo;
- function bar return integer;
-
- end small_package;
-
- with test_proc;
- with Utilities;
- package body small_package is
-
- procedure foo is
- begin
- null;
- end foo;
-
- function bar return integer is
- begin
- null;
- end bar;
-
- end small_package;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test4.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- package big_package is
- procedure collect;
- procedure process;
- procedure other_one;
- end big_package;
-
- with graphs;
- with tables;
- with bp_utils;
- package body big_package is
-
-
-
- package g is new graphs(integer);
- graph_thing : g.graph;
-
- function do_stuff(single: tables.item;
- next: integer)
- return new_type;
-
- procedure collect is
- begin
- null;
- end collect;
-
- pragma inline (collect);
-
- procedure process is
- package T renames tables;
- package s_table is new T (string(1..3));
- begin
- null;
- end process;
-
- function do_stuff (single: tables.item;
- next: integer)
- return new_type is
- procedure p renames process;
- function x is new graph (color);
- begin
- null;
- end do_stuff;
-
- procedure other_one is separate;
-
- end big_package;
-
-
- with something;
- with another_thing;
-
- separate (big_package)
- procedure other_one is
- begin
- null;
- end other_one;
-
-
-
- with big_package;
- with x;
- procedure newp is new x (xyz_type);
-
-
- with big_package;
- procedure rachel;
-
- with rachel;
- procedure cindy;
- pragma inline (cindy);
-
- procedure cindy is
- package r renames rachel;
- begin
- null;
- end cindy;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test5.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- with big_package;
- with x;
- procedure newp is new x (xyz_type);
-
-
- with big_package;
- procedure rachel;
-
- with rachel;
- procedure cindy;
- pragma inline (cindy);
-
- procedure cindy is
- package r renames rachel;
- begin
- null;
- end cindy;
-
- package big_package is
- procedure collect;
- procedure process;
- procedure other_one;
-
- end big_package;
-
- with graphs;
- with tables;
- with bp_utils;
- package body big_package is
-
-
-
- package g is new graphs(integer);
- graph_thing : g.graph;
-
- function do_stuff(single: tables.item;
- next: integer)
- return new_type;
-
- procedure collect is
- begin
- null;
- end collect;
-
- pragma inline (collect);
-
- procedure process is
- package T renames tables;
- package s_table is new T (string(1..3));
- begin
- null;
- end process;
-
- function do_stuff (single: tables.item;
- next: integer)
- return new_type is
- procedure p renames process;
- function x is new graph (color);
- begin
- null;
- end do_stuff;
-
- procedure other_one is separate;
-
- end big_package;
-
-
- with something;
- with another_thing;
-
- separate (big_package)
- procedure other_one is
- begin
- null;
- end other_one;
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test6.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- with cindy;
- package big_package is
- procedure collect;
- procedure process;
- procedure other_one;
-
- end big_package;
-
- with graphs;
- with tables;
- with bp_utils;
- package body big_package is
-
-
-
- package g is new graphs(integer);
- graph_thing : g.graph;
-
- function do_stuff(single: tables.item;
- next: integer)
- return new_type;
-
- procedure collect is
- begin
- null;
- end collect;
-
- pragma inline (collect);
-
- procedure process is
- package T renames tables;
- package s_table is new T (string(1..3));
- begin
- null;
- end process;
-
- function do_stuff (single: tables.item;
- next: integer)
- return new_type is
- procedure p renames process;
- function x is new graph (color);
- begin
- null;
- end do_stuff;
-
- procedure other_one is separate;
-
- end big_package;
-
-
- with something;
- with another_thing;
-
- separate (big_package)
- procedure other_one is
- begin
- null;
- end other_one;
-
-
-
- with big_package;
- with x;
- procedure newp is new x (xyz_type);
-
-
- with big_package;
- procedure rachel;
-
- with rachel;
- procedure cindy;
- pragma inline (cindy);
-
- procedure cindy is
- package r renames rachel;
- begin
- null;
- end cindy;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test7.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- procedure duplicate_name (n: integer;
- m: string );
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test8.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- procedure duplicate_name (n: integer;
- m: string );
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --fcycle1.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- procedure abacus;
-
- with counter;
- procedure player;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --fcycle2.tst
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- with abacus;
- procedure counter;
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test1.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- alana (spec)
- boris (spec)
- cathy (spec)
- david (spec)
- elaine (spec)
- freddy (spec)
- garet (spec)
- horace (spec)
- iris (spec)
- john (spec)
- kevin (spec)
- laura (spec)
- mary (spec)
- nancy (spec)
- oriel (spec)
- peter (spec)
- quentin (spec)
- robin (spec)
- samuel (spec)
- thomas (spec)
- ulva (spec)
- veronica (spec)
- warren (spec)
- xavier (spec)
- yvonne (spec)
- zeus (spec)
- alice (spec)
- barry (spec)
- christopher (spec)
- darin (spec)
- eloise (spec)
- freida (spec)
- gillian (spec)
- harry (spec)
- irvin (spec)
- **** irvin (spec)
- janice (spec)
- kerry (spec)
- larry (spec)
- megan (spec)
- nora (spec)
- oswald (spec)
- paul (spec)
- querra (spec)
- richard (spec)
- sarah (spec)
- tony (spec)
- ulysses (spec)
- vanessa (spec)
- walace (spec)
- xylar (spec)
- yerra (spec)
- Compilation Report May 7, 1985 page 2
-
- Withs Dependencies:
-
- francine (spec)
- gertrude (spec)
- hilda (spec)
- ivan (spec)
- jeremiah (spec)
- katie (spec)
- linda (spec)
- mike (spec)
- nickolas (spec)
- onan (spec)
- patty (spec)
- quincy (spec)
- rhonda (spec)
- seth (spec)
- **** seth (spec)
- tatiana (spec)
- gerry (spec)
- desi (spec)
- william (spec)
- lily (spec)
- jane (spec)
-
-
-
- Withed-by Dependencies:
-
- jane (spec)
- lily (spec)
- william (spec)
- desi (spec)
- gerry (spec)
- tatiana (spec)
- seth (spec)
- rhonda (spec)
- quincy (spec)
- patty (spec)
- onan (spec)
- nickolas (spec)
- mike (spec)
- linda (spec)
- katie (spec)
- jeremiah (spec)
- ivan (spec)
- hilda (spec)
- gertrude (spec)
- francine (spec)
- yerra (spec)
- xylar (spec)
- walace (spec)
- vanessa (spec)
- ulysses (spec)
- tony (spec)
- sarah (spec)
- richard (spec)
- querra (spec)
- paul (spec)
- Compilation Report May 7, 1985 page 3
-
- Withed-by Dependencies:
-
- oswald (spec)
- nora (spec)
- megan (spec)
- larry (spec)
- kerry (spec)
- **** kerry (spec)
- janice (spec)
- irvin (spec)
- harry (spec)
- gillian (spec)
- freida (spec)
- eloise (spec)
- darin (spec)
- christopher (spec)
- barry (spec)
- alice (spec)
- zeus (spec)
- yvonne (spec)
- xavier (spec)
- warren (spec)
- veronica (spec)
- ulva (spec)
- thomas (spec)
- samuel (spec)
- robin (spec)
- quentin (spec)
- peter (spec)
- oriel (spec)
- nancy (spec)
- mary (spec)
- laura (spec)
- kevin (spec)
- john (spec)
- iris (spec)
- horace (spec)
- garet (spec)
- **** garet (spec)
- freddy (spec)
- elaine (spec)
- david (spec)
- cathy (spec)
- boris (spec)
- alana (spec)
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- (not found) jane (spec)
- TEST1.TST lily (spec)
- TEST1.TST william (spec)
- TEST1.TST desi (spec)
- TEST1.TST gerry (spec)
- Compilation Report May 7, 1985 page 4
-
- File Name Compilation Unit
-
- TEST1.TST tatiana (spec)
- TEST1.TST seth (spec)
- TEST1.TST rhonda (spec)
- TEST1.TST quincy (spec)
- TEST1.TST patty (spec)
- TEST1.TST onan (spec)
- TEST1.TST nickolas (spec)
- TEST1.TST mike (spec)
- TEST1.TST linda (spec)
- TEST1.TST katie (spec)
- TEST1.TST jeremiah (spec)
- TEST1.TST ivan (spec)
- TEST1.TST hilda (spec)
- TEST1.TST gertrude (spec)
- TEST1.TST francine (spec)
- TEST1.TST yerra (spec)
- TEST1.TST xylar (spec)
- TEST1.TST walace (spec)
- TEST1.TST vanessa (spec)
- TEST1.TST ulysses (spec)
- TEST1.TST tony (spec)
- TEST1.TST sarah (spec)
- TEST1.TST richard (spec)
- TEST1.TST querra (spec)
- TEST1.TST paul (spec)
- TEST1.TST oswald (spec)
- TEST1.TST nora (spec)
- TEST1.TST megan (spec)
- TEST1.TST larry (spec)
- TEST1.TST kerry (spec)
- TEST1.TST janice (spec)
- TEST1.TST irvin (spec)
- TEST1.TST harry (spec)
- TEST1.TST gillian (spec)
- TEST1.TST freida (spec)
- TEST1.TST eloise (spec)
- TEST1.TST darin (spec)
- TEST1.TST christopher (spec)
- TEST1.TST barry (spec)
- TEST1.TST alice (spec)
- TEST1.TST zeus (spec)
- TEST1.TST yvonne (spec)
- TEST1.TST xavier (spec)
- TEST1.TST warren (spec)
- TEST1.TST veronica (spec)
- TEST1.TST ulva (spec)
- TEST1.TST thomas (spec)
- TEST1.TST samuel (spec)
- TEST1.TST robin (spec)
- TEST1.TST quentin (spec)
- TEST1.TST peter (spec)
- TEST1.TST oriel (spec)
- TEST1.TST nancy (spec)
- TEST1.TST mary (spec)
- TEST1.TST laura (spec)
- TEST1.TST kevin (spec)
- Compilation Report May 7, 1985 page 5
-
- File Name Compilation Unit
-
- TEST1.TST john (spec)
- TEST1.TST iris (spec)
- TEST1.TST horace (spec)
- TEST1.TST garet (spec)
- TEST1.TST freddy (spec)
- TEST1.TST elaine (spec)
- TEST1.TST david (spec)
- TEST1.TST cathy (spec)
- TEST1.TST boris (spec)
- TEST1.TST alana (spec)
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST1.TST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test2.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
-
-
- Withed-by Dependencies:
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
-
-
-
- File Order:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test3.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- small_package (body)
- small_package (spec)
- xyz (spec)
- cbgs (spec)
- Utilities (spec)
- test_proc (spec)
- procn (spec)
- packb (spec)
-
- xyz (body)
- {xyz (spec)}
- {Utilities (spec)}
- aPackage (spec)
-
- test_proc (body)
- {test_proc (spec)}
-
-
-
- Withed-by Dependencies:
-
- cbgs (spec)
- xyz (spec)
- small_package (spec)
- small_package (body)
- xyz (body)
-
- Utilities (spec)
- {small_package (body)}
- {xyz (body)}
-
- procn (spec)
- test_proc (spec)
- {small_package (body)}
- test_proc (body)
-
- packb (spec)
- {test_proc (spec)}
-
- aPackage (spec)
- {xyz (body)}
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- (not found) cbgs (spec)
- TEST3.TST xyz (spec)
- TEST3.TST small_package (spec)
- Compilation Report May 7, 1985 page 2
-
- File Name Compilation Unit
-
- (not found) Utilities (spec)
- (not found) procn (spec)
- (not found) packb (spec)
- TEST3.TST test_proc (spec)
- TEST3.TST small_package (body)
- (not found) aPackage (spec)
- TEST3.TST xyz (body)
- TEST3.TST test_proc (body)
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST3.TST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test4.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- cindy (body)
- cindy (spec)
- rachel (spec)
- big_package (body)
- big_package (spec)
- graph (body)
- graph (spec)
- T (body)
- T (spec)
- graphs (body)
- graphs (spec)
- bp_utils (spec)
- tables (spec)
- {graphs (spec)}
- {big_package (spec)}
-
- newp (spec)
- {big_package (body)}
- x (body)
- x (spec)
- {x (spec)}
- {big_package (spec)}
-
- other_one (separate body)
- {big_package (body)}
- another_thing (spec)
- something (spec)
-
-
-
- Withed-by Dependencies:
-
- big_package (spec)
- rachel (spec)
- cindy (spec)
- cindy (body)
- newp (spec)
- big_package (body)
- {newp (spec)}
- {rachel (spec)}
- other_one (separate body)
-
- graph (spec)
- graph (body)
- {big_package (body)}
-
- T (spec)
- T (body)
- {big_package (body)}
-
- graphs (spec)
- {big_package (body)}
- Compilation Report May 7, 1985 page 2
-
- Withed-by Dependencies:
-
- graphs (body)
- {big_package (body)}
-
- bp_utils (spec)
- {big_package (body)}
-
- tables (spec)
- {big_package (body)}
-
- x (spec)
- {newp (spec)}
- x (body)
- {newp (spec)}
-
- another_thing (spec)
- {other_one (separate body)}
-
- something (spec)
- {other_one (separate body)}
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- TEST4.TST big_package (spec)
- (not found) graph (spec)
- (not found) graph (body)
- (not found) T (spec)
- (not found) T (body)
- (not found) graphs (spec)
- (not found) graphs (body)
- (not found) bp_utils (spec)
- (not found) tables (spec)
- TEST4.TST big_package (body)
- TEST4.TST rachel (spec)
- TEST4.TST cindy (spec)
- TEST4.TST cindy (body)
- (not found) x (spec)
- (not found) x (body)
- TEST4.TST newp (spec)
- (not found) another_thing (spec)
- (not found) something (spec)
- TEST4.TST other_one (separate body)
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST4.TST
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test5.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- other_one (separate body)
- big_package (body)
- big_package (spec)
- graph (body)
- graph (spec)
- T (body)
- T (spec)
- graphs (body)
- graphs (spec)
- bp_utils (spec)
- tables (spec)
- {graphs (spec)}
- another_thing (spec)
- something (spec)
-
- cindy (body)
- cindy (spec)
- rachel (spec)
- {big_package (body)}
- {big_package (spec)}
-
- newp (spec)
- {big_package (body)}
- x (body)
- x (spec)
- {x (spec)}
- {big_package (spec)}
-
-
-
- Withed-by Dependencies:
-
- big_package (spec)
- big_package (body)
- newp (spec)
- rachel (spec)
- cindy (spec)
- cindy (body)
- other_one (separate body)
- {rachel (spec)}
- {newp (spec)}
-
- graph (spec)
- graph (body)
- {big_package (body)}
-
- T (spec)
- T (body)
- {big_package (body)}
-
- graphs (spec)
- {big_package (body)}
- Compilation Report May 7, 1985 page 2
-
- Withed-by Dependencies:
-
- graphs (body)
- {big_package (body)}
-
- bp_utils (spec)
- {big_package (body)}
-
- tables (spec)
- {big_package (body)}
-
- another_thing (spec)
- {other_one (separate body)}
-
- something (spec)
- {other_one (separate body)}
-
- x (spec)
- {newp (spec)}
- x (body)
- {newp (spec)}
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- TEST5.TST big_package (spec) *
- (not found) graph (spec)
- (not found) graph (body)
- (not found) T (spec)
- (not found) T (body)
- (not found) graphs (spec)
- (not found) graphs (body)
- (not found) bp_utils (spec)
- (not found) tables (spec)
- TEST5.TST big_package (body)
- (not found) another_thing (spec)
- (not found) something (spec)
- TEST5.TST other_one (separate body)
- TEST5.TST rachel (spec) *
- TEST5.TST cindy (spec) *
- TEST5.TST cindy (body) *
- (not found) x (spec)
- (not found) x (body)
- TEST5.TST newp (spec) *
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST5.TST
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test6.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- The reports following do not reflect these cyclic dependencies
- The following dependencies cause cycles :
-
- A dependency from CINDY (SPEC) to RACHEL (SPEC)
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- rachel (spec)
- big_package (body)
- big_package (spec)
- cindy (body)
- cindy (spec)
- {cindy (spec)}
- graph (body)
- graph (spec)
- T (body)
- T (spec)
- graphs (body)
- graphs (spec)
- bp_utils (spec)
- tables (spec)
- {graphs (spec)}
- {big_package (spec)}
-
- newp (spec)
- {big_package (body)}
- x (body)
- x (spec)
- {x (spec)}
- {big_package (spec)}
-
- other_one (separate body)
- {big_package (body)}
- another_thing (spec)
- something (spec)
-
-
-
- Withed-by Dependencies:
-
- cindy (spec)
- cindy (body)
- big_package (spec)
- rachel (spec)
- newp (spec)
- big_package (body)
- {newp (spec)}
- {rachel (spec)}
- other_one (separate body)
- {big_package (spec)}
-
- graph (spec)
- graph (body)
- Compilation Report May 7, 1985 page 2
-
- Withed-by Dependencies:
-
- {big_package (body)}
-
- T (spec)
- T (body)
- {big_package (body)}
-
- graphs (spec)
- {big_package (body)}
- graphs (body)
- {big_package (body)}
-
- bp_utils (spec)
- {big_package (body)}
-
- tables (spec)
- {big_package (body)}
-
- x (spec)
- {newp (spec)}
- x (body)
- {newp (spec)}
-
- another_thing (spec)
- {other_one (separate body)}
-
- something (spec)
- {other_one (separate body)}
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- TEST6.TST cindy (spec) *
- TEST6.TST cindy (body)
- TEST6.TST big_package (spec) *
- (not found) graph (spec)
- (not found) graph (body)
- (not found) T (spec)
- (not found) T (body)
- (not found) graphs (spec)
- (not found) graphs (body)
- (not found) bp_utils (spec)
- (not found) tables (spec)
- TEST6.TST big_package (body) *
- TEST6.TST rachel (spec) *
- (not found) x (spec)
- (not found) x (body)
- TEST6.TST newp (spec) *
- (not found) another_thing (spec)
- (not found) something (spec)
- TEST6.TST other_one (separate body) *
-
-
- Compilation Report May 7, 1985 page 3
-
- File Name Compilation Unit
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST6.TST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --test78.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- duplicate_name (spec)
-
-
-
- Withed-by Dependencies:
-
- duplicate_name (spec)
-
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- TEST7.TST duplicate_name (spec)
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST7.TST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --raw.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- small_package (body)
- small_package (spec)
- xyz (spec)
- cbgs (spec)
- Utilities (spec)
- test_proc (spec)
- procn (spec)
- packb (spec)
-
- xyz (body)
- {xyz (spec)}
- {Utilities (spec)}
- aPackage (spec)
-
- test_proc (body)
- {test_proc (spec)}
-
-
-
- cbgs (spec)
- xyz (spec)
- small_package (spec)
- small_package (body)
- xyz (body)
-
- Utilities (spec)
- {small_package (body)}
- {xyz (body)}
-
- procn (spec)
- test_proc (spec)
- {small_package (body)}
- test_proc (body)
-
- packb (spec)
- {test_proc (spec)}
-
- aPackage (spec)
- {xyz (body)}
-
-
-
-
- (not found) cbgs (spec)
- TEST3.TST xyz (spec)
- TEST3.TST small_package (spec)
- (not found) Utilities (spec)
- (not found) procn (spec)
- (not found) packb (spec)
- TEST3.TST test_proc (spec)
- TEST3.TST small_package (body)
- (not found) aPackage (spec)
- TEST3.TST xyz (body)
- TEST3.TST test_proc (body)
-
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST3.TST
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --depend.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Dependency Report:
-
- Withs Dependencies:
-
- small_package (body)
- small_package (spec)
- xyz (spec)
- cbgs (spec)
- Utilities (spec)
- test_proc (spec)
- procn (spec)
- packb (spec)
-
- xyz (body)
- {xyz (spec)}
- {Utilities (spec)}
- aPackage (spec)
-
- test_proc (body)
- {test_proc (spec)}
-
-
-
- Withed-by Dependencies:
-
- cbgs (spec)
- xyz (spec)
- small_package (spec)
- small_package (body)
- xyz (body)
-
- Utilities (spec)
- {small_package (body)}
- {xyz (body)}
-
- procn (spec)
- test_proc (spec)
- {small_package (body)}
- test_proc (body)
-
- packb (spec)
- {test_proc (spec)}
-
- aPackage (spec)
- {xyz (body)}
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --rawdep.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- small_package (body)
- small_package (spec)
- xyz (spec)
- cbgs (spec)
- Utilities (spec)
- test_proc (spec)
- procn (spec)
- packb (spec)
-
- xyz (body)
- {xyz (spec)}
- {Utilities (spec)}
- aPackage (spec)
-
- test_proc (body)
- {test_proc (spec)}
-
-
-
- cbgs (spec)
- xyz (spec)
- small_package (spec)
- small_package (body)
- xyz (body)
-
- Utilities (spec)
- {small_package (body)}
- {xyz (body)}
-
- procn (spec)
- test_proc (spec)
- {small_package (body)}
- test_proc (body)
-
- packb (spec)
- {test_proc (spec)}
-
- aPackage (spec)
- {xyz (body)}
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --comp.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- Compilation Report May 7, 1985 page 1
-
-
-
- Compilation List:
-
- File Name Compilation Unit
-
- (not found) cbgs (spec)
- TEST3.TST xyz (spec)
- TEST3.TST small_package (spec)
- (not found) Utilities (spec)
- (not found) procn (spec)
- (not found) packb (spec)
- TEST3.TST test_proc (spec)
- TEST3.TST small_package (body)
- (not found) aPackage (spec)
- TEST3.TST xyz (body)
- TEST3.TST test_proc (body)
-
-
-
- File Order:
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST3.TST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --rawcomp.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- (not found) cbgs (spec)
- TEST3.TST xyz (spec)
- TEST3.TST small_package (spec)
- (not found) Utilities (spec)
- (not found) procn (spec)
- (not found) packb (spec)
- TEST3.TST test_proc (spec)
- TEST3.TST small_package (body)
- (not found) aPackage (spec)
- TEST3.TST xyz (body)
- TEST3.TST test_proc (body)
-
-
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST3.TST
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --file.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- USER1:[NOSC.WORK.TOOLS.COMPORD.TESTS]TEST3.TST
-
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- --units.rpt
- --::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- (not found) cbgs (spec)
- TEST3.TST xyz (spec)
- TEST3.TST small_package (spec)
- (not found) Utilities (spec)
- (not found) procn (spec)
- (not found) packb (spec)
- TEST3.TST test_proc (spec)
- TEST3.TST small_package (body)
- (not found) aPackage (spec)
- TEST3.TST xyz (body)
- TEST3.TST test_proc (body)
-
-
-
-
-