diff --git a/tests/Regression/223732-man-page-of-ltrace/Makefile b/tests/Regression/223732-man-page-of-ltrace/Makefile
new file mode 100644
index 0000000..c303f27
--- /dev/null
+++ b/tests/Regression/223732-man-page-of-ltrace/Makefile
@@ -0,0 +1,60 @@
+# Copyright (c) 2008 Red Hat, Inc. All rights reserved.
+#
+# 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 .
+#
+# Author: Michal Nowak
+
+
+TOPLEVEL_NAMESPACE=/tools
+PACKAGE_NAME=ltrace
+RELATIVE_PATH=Regression/223732-man-page-of-ltrace
+
+export TEST=$(TOPLEVEL_NAMESPACE)/$(PACKAGE_NAME)/$(RELATIVE_PATH)
+export TESTVERSION=1.0
+
+BUILT_FILES=
+
+FILES=$(METADATA) runtest.sh Makefile PURPOSE
+
+.PHONY: all install download clean
+
+run: $(FILES) build
+ ./runtest.sh
+
+build: $(BUILT_FILES)
+ chmod a+x ./runtest.sh
+
+clean:
+ rm -f *~ $(BUILT_FILES)
+
+
+include /usr/share/rhts/lib/rhts-make.include
+
+
+$(METADATA): Makefile
+ @touch $(METADATA)
+ @echo "Owner: Michal Nowak " > $(METADATA)
+ @echo "Name: $(TEST)" >> $(METADATA)
+ @echo "Path: $(TEST_DIR)" >> $(METADATA)
+ @echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
+ @echo "Description: man page of ltrace had a note about ELF32-support-only" >> $(METADATA)
+ @echo "Bug: 223732" >> $(METADATA)
+ @echo "Type: Regression" >> $(METADATA)
+ @echo "TestTime: 5m" >> $(METADATA)
+ @echo "RunFor: $(PACKAGE_NAME)" >> $(METADATA)
+ @echo "Requires: $(PACKAGE_NAME)" >> $(METADATA)
+ @echo "License: GPLv3+" >> $(METADATA)
+
+ rhts-lint $(METADATA)
+
diff --git a/tests/Regression/223732-man-page-of-ltrace/PURPOSE b/tests/Regression/223732-man-page-of-ltrace/PURPOSE
new file mode 100644
index 0000000..8f8da66
--- /dev/null
+++ b/tests/Regression/223732-man-page-of-ltrace/PURPOSE
@@ -0,0 +1,7 @@
+Man page of ltrace said,
+'Only ELF32 binaries are supported.'
+
+I seemed ltrace does not support ia64 architecture.
+
+That's not true.
+
diff --git a/tests/Regression/223732-man-page-of-ltrace/main.fmf b/tests/Regression/223732-man-page-of-ltrace/main.fmf
new file mode 100644
index 0000000..ef24105
--- /dev/null
+++ b/tests/Regression/223732-man-page-of-ltrace/main.fmf
@@ -0,0 +1,21 @@
+summary: man page of ltrace had a note about ELF32-support-only
+description: |+
+ Man page of ltrace said,
+ 'Only ELF32 binaries are supported.'
+
+ I seemed ltrace does not support ia64 architecture.
+
+ That's not true.
+
+contact: Michal Nowak
+component:
+- ltrace
+test: ./runtest.sh
+framework: beakerlib
+recommend:
+- ltrace
+duration: 5m
+link:
+- relates: https://bugzilla.redhat.com/show_bug.cgi?id=223732
+extra-summary: /tools/ltrace/Regression/223732-man-page-of-ltrace
+extra-task: /tools/ltrace/Regression/223732-man-page-of-ltrace
diff --git a/tests/Regression/223732-man-page-of-ltrace/runtest.sh b/tests/Regression/223732-man-page-of-ltrace/runtest.sh
new file mode 100755
index 0000000..3f794dc
--- /dev/null
+++ b/tests/Regression/223732-man-page-of-ltrace/runtest.sh
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+# Copyright (c) 2008 Red Hat, Inc. All rights reserved.
+#
+# 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 .
+#
+# Author: Michal Nowak
+
+# source the test script helpers
+. /usr/bin/rhts_environment.sh
+. /usr/share/beakerlib/beakerlib.sh || exit 1
+
+PACKAGE=ltrace
+
+rlJournalStart
+ rlPhaseStartSetup "Gathering information"
+ rlShowPackageVersion $PACKAGE
+ rlShowRunningKernel
+ rlPhaseEnd
+
+ rlPhaseStartTest "Running tar inside ltrace"
+ man ltrace > trace.man
+ rlAssertNotGrep "Only ELF32 binaries are supported" trace.man
+ rlPhaseEnd
+
+ rlPhaseStartCleanup "Doing clean-up"
+ rm -f trace.man
+ rlPhaseEnd
+ rlJournalPrintText
+rlJournalEnd