source: general/prog/dejagnu.xml@ dd9e0c3

systemd-13485
Last change on this file since dd9e0c3 was 6d27308, checked in by Douglas R. Reno <renodr@…>, 8 years ago

GCC6 Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17356 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY dejagnu-download-http "https://ftp.gnu.org/pub/gnu/dejagnu/dejagnu-&dejagnu-version;.tar.gz">
8 <!ENTITY dejagnu-download-ftp "ftp://ftp.gnu.org/pub/gnu/dejagnu/dejagnu-&dejagnu-version;.tar.gz">
9 <!ENTITY dejagnu-md5sum "1fdc2eb0d592c4f89d82d24dfdf02f0b">
10 <!ENTITY dejagnu-size "512 KB">
11 <!ENTITY dejagnu-buildsize "3.2 MB">
12 <!ENTITY dejagnu-time "less than 0.1 SBU">
13]>
14
15<sect1 id="dejagnu" xreflabel="DejaGnu-&dejagnu-version;">
16 <?dbhtml filename="dejagnu.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>DejaGnu-&dejagnu-version;</title>
24
25 <indexterm zone="dejagnu">
26 <primary sortas="a-DejaGnu">DejaGnu</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to DejaGnu</title>
31
32 <para>
33 <application>DejaGnu</application> is a framework for running test
34 suites on GNU tools. It is written in <command>expect</command>, which
35 uses <application>Tcl</application> (Tool command language). It was installed
36 by LFS in the temporary <filename class="directory">/tools</filename>
37 directory. These instructions install it permanently.
38 </para>
39
40 &lfs79_checked;
41
42 &gcc6_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&dejagnu-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&dejagnu-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &dejagnu-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &dejagnu-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &dejagnu-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &dejagnu-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">DejaGnu Dependencies</bridgehead>
79
80 <bridgehead renderas="sect4">Required</bridgehead>
81 <para role="required">
82 <xref linkend="expect"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="docbook-utils"/> and
88 <ulink url="http://sourceforge.net/projects/docbook2x/">docbook2X</ulink>
89 (both looked for by the <command>configure</command> script but not used
90 in the build)
91 </para>
92
93 <para condition="html" role="usernotes">User Notes:
94 <ulink url="&blfs-wiki;/dejagnu"/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of DejaGnu</title>
100
101 <para>
102 Install <application>DejaGnu</application> by running the following
103 commands:
104 </para>
105
106<screen><userinput>./configure --prefix=/usr &amp;&amp;
107makeinfo --html --no-split -o doc/dejagnu.html doc/dejagnu.texi &amp;&amp;
108makeinfo --plaintext -o doc/dejagnu.txt doc/dejagnu.texi</userinput></screen>
109
110 <para>
111 To test the results, issue <command>make check</command>.
112 </para>
113
114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:
116 </para>
117
118<screen role="root"><userinput>make install &amp;&amp;
119install -v -dm755 /usr/share/doc/dejagnu-&dejagnu-version; &amp;&amp;
120install -v -m644 doc/dejagnu.{html,txt} \
121 /usr/share/doc/dejagnu-&dejagnu-version;</userinput></screen>
122 </sect2>
123
124 <sect2 role="content">
125 <title>Contents</title>
126
127 <segmentedlist>
128 <segtitle>Installed Program</segtitle>
129 <segtitle>Installed Libraries</segtitle>
130 <segtitle>Installed Directory</segtitle>
131
132 <seglistitem>
133 <seg>
134 runtest
135 </seg>
136 <seg>
137 None
138 </seg>
139 <seg>
140 /usr/share/dejagnu
141 </seg>
142 </seglistitem>
143 </segmentedlist>
144
145 <variablelist>
146 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
147 <?dbfo list-presentation="list"?>
148 <?dbhtml list-presentation="table"?>
149
150 <varlistentry id="runtest">
151 <term><command>runtest</command></term>
152 <listitem>
153 <para>
154 is the <application>DejaGnu</application> test driver program. It is
155 used to control what tests to run, and variations on how to run them.
156 </para>
157 <indexterm zone="dejagnu runtest">
158 <primary sortas="b-runtest">runtest</primary>
159 </indexterm>
160 </listitem>
161 </varlistentry>
162
163 </variablelist>
164
165 </sect2>
166
167</sect1>
Note: See TracBrowser for help on using the repository browser.