aboutsummaryrefslogtreecommitdiff
path: root/FAQ.in
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-08 18:11:53 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-08 18:11:53 +0000
commit4f7ea42781ff7b4fe3730c097a929c9f910a7075 (patch)
treee0830c47fd66bb69fc05dfe1a4dee215a191f645 /FAQ.in
parent27e309c17790ac7d0a2163785a2f4633f87b4958 (diff)
downloadglibc-4f7ea42781ff7b4fe3730c097a929c9f910a7075.zip
glibc-4f7ea42781ff7b4fe3730c097a929c9f910a7075.tar.gz
glibc-4f7ea42781ff7b4fe3730c097a929c9f910a7075.tar.bz2
Update.
1999-03-08 Ulrich Drepper <drepper@cygnus.com> * locales/ru_RU (mon): Fix March and May month name translations. Reported by Vadim V. Zhytnikov <vvzhy@td.lpi.ac.ru>.
Diffstat (limited to 'FAQ.in')
-rw-r--r--FAQ.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/FAQ.in b/FAQ.in
index 3a769d8..ab42dc5 100644
--- a/FAQ.in
+++ b/FAQ.in
@@ -845,7 +845,7 @@ passwd_compat: nis
group_compat: nis
shadow_compat: nis
-?? What needs to be recompiled when upgrading from glibc 2.0 to glibc
+??libs What needs to be recompiled when upgrading from glibc 2.0 to glibc
2.1?
{AJ,CG} If you just upgrade the glibc from 2.0.x (x <= 7) to 2.1, binaries
@@ -907,6 +907,11 @@ compiler uses, compile your program with `gcc -E ...|grep G_config.h' and
remove that file. Your compiler should pick up the file that has been
installed by glibc 2.1 in your include directory.
+?? After upgrading to glibc 2.1, libraries that were compiled against
+ glibc 2.0.x don't work anymore.
+
+{AJ} See ?libs.
+
? Source and binary incompatibilities, and what to do about them
split-4'>users/qiyao/regcache-split-4 Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/ui-redirect.exp
blob: 2c5d224e1f78b9554d105f9475b85df6cfd62870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (C) 2010-2015 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

if { [prepare_for_testing ui-redirect.exp ui-redirect start.c] } {
    return -1
}

gdb_breakpoint main

set test "commands"
gdb_test_multiple $test $test {
    -re "End with a line saying just \"end\"\\.\r\n>$" {
	pass $test
    }
}

set test "print 1"
gdb_test_multiple $test $test {
    -re "\r\n>$" {
	pass $test
    }
}
gdb_test_no_output "end"

gdb_test_no_output "set logging file /dev/null"
gdb_test "set logging on" "Copying output to /dev/null\\."
gdb_test "save breakpoints /dev/null" "Saved to file '/dev/null'\\."
gdb_test "set logging off" "Done logging to /dev/null\\."
gdb_test "help" "List of classes of commands:.*"