New upstream version 0.79.5
This commit is contained in:
65
regtest/.dvdisaster-default
Normal file
65
regtest/.dvdisaster-default
Normal file
@@ -0,0 +1,65 @@
|
||||
# dvdisaster-0.79.5 Konfigurations-Datei
|
||||
# Dies ist eine automatisch erzeugte Datei.
|
||||
# Sie wird bei jedem Aufruf von dvdisaster neu überschrieben.
|
||||
|
||||
last-device: sim-cd
|
||||
last-image: /dev/shm/medium.iso
|
||||
last-ecc: /dev/shm/medium.ecc
|
||||
|
||||
adaptive-read: 0
|
||||
auto-suffix: 0
|
||||
bd-size1: 11826176
|
||||
bd-size2: 23652352
|
||||
cache-size: 32
|
||||
cd-size: 359424
|
||||
codec-threads: 2
|
||||
confirm-deletion: 0
|
||||
dao: 0
|
||||
defective-dump: 0
|
||||
defective-dir: /home/cg
|
||||
defective-prefix: sektor_
|
||||
dotfile-version: 7905
|
||||
dvd-size1: 2295104
|
||||
dvd-size2: 4171712
|
||||
ecc-target: 1
|
||||
eject: 0
|
||||
encoding-algorithm:0
|
||||
encoding-io-strategy:0
|
||||
examine-rs02: 0
|
||||
examine-rs03: 0
|
||||
fill-unreadable: -1
|
||||
ignore-fatal-sense: 0
|
||||
ignore-iso-size: 0
|
||||
internal-attempts: -1
|
||||
jump: 16
|
||||
log-file-enabled: 0
|
||||
log-file: /tmp/.dvdisaster.log
|
||||
medium-size: 25000
|
||||
method-name: RS01
|
||||
max-read-attempts: 1
|
||||
min-read-attempts: 1
|
||||
old-missing-sector-marker: 0
|
||||
pdf-viewer: evince
|
||||
prefetch-sectors: 128
|
||||
raw-mode: 32
|
||||
read-and-create: 0
|
||||
read-medium: 0
|
||||
read-raw: 0
|
||||
redundancy: normal
|
||||
reverse-cancel-ok: 0
|
||||
spinup-delay: 0
|
||||
unlink: 0
|
||||
verbose: 0
|
||||
welcome-msg: 0
|
||||
|
||||
positive-text: 008000
|
||||
negative-text: ff0000
|
||||
bar-color: ff0000
|
||||
log-color: ff00ff
|
||||
curve-color: 0000ff
|
||||
defective-sector: ff0000
|
||||
bad-checksum-sector: ffc000
|
||||
good-sector: 00db00
|
||||
ignored-sector: 0000ff
|
||||
highlit-sector: ffffff
|
||||
present-sector: 008000
|
||||
49
regtest/README
Normal file
49
regtest/README
Normal file
@@ -0,0 +1,49 @@
|
||||
General structure of the database log file
|
||||
------------------------------------------
|
||||
|
||||
Creating a new database file:
|
||||
Run the test, then copy and modify /dev/shm/newlog.txt
|
||||
|
||||
- The first 2 lines of the log file contain special content
|
||||
and are excluded from the diff against the actual log.
|
||||
|
||||
Line 1: md5sum of image file or "ignore"
|
||||
Line 2: md5sum of ecc file or "ignore"
|
||||
|
||||
- Remove directory path prefix of all occurrences of .iso and .ecc files!
|
||||
|
||||
|
||||
Anatomy of a test case
|
||||
----------------------
|
||||
|
||||
Example:
|
||||
|
||||
01 # Scan an image with a simulated hardware failure and
|
||||
02 # --ignore-fatal-sense not set.
|
||||
03
|
||||
04 if try "scanning image, ignoring simulated hardware failure" scan_with_ignored_hardware_failure; then
|
||||
05
|
||||
06 cp $MASTERISO $SIMISO
|
||||
07 $NEWVER --debug -i$SIMISO --erase "5000:hardware failure" >>$LOGFILE 2>&1
|
||||
08
|
||||
09 replace_config ignore-fatal-sense 1
|
||||
10 extra_args="--debug --sim-cd=$SIMISO --fixed-speed-values"
|
||||
11 run_regtest scan_with_ignored_hardware_failure "--spinup-delay=0 -s --ignore-fatal-sense" $ISODIR/no.iso $ISODIR/no.ecc
|
||||
12 fi
|
||||
|
||||
line 01-02: Describe what the test case does and what results are expected.
|
||||
line 04 : try description symbol
|
||||
provides a descriptive text for the test case and defines the symbol/label
|
||||
which is part of the database file and the config.txt list.
|
||||
line 06-07: prepare test files
|
||||
line 09 : in GUI mode, some settings can only made in the .dvdisaster file,
|
||||
not with the respective command line switches
|
||||
line 10 : arguments which work both in GUI mode and command line mode
|
||||
line 11 : run_regtest symbol args iso_image ecc_file
|
||||
Runs the regtest.
|
||||
In GUI mode, args is ignored and only the iso_image and ecc_file parameters
|
||||
are passed via the configuration file. extra_args are provided on the
|
||||
command line.
|
||||
In CLI mode, args is prepended with extra_args and appended with switches
|
||||
for the iso_image and the ecc_file and then passed with the program
|
||||
call in the command line.
|
||||
263
regtest/common.bash
Executable file
263
regtest/common.bash
Executable file
@@ -0,0 +1,263 @@
|
||||
CONFIGFILE="./config.txt"
|
||||
NEWVER=../dvdisaster
|
||||
SETVERSION="0.80"
|
||||
|
||||
DATABASE=./database
|
||||
RNDSEQ="./fixed-random-sequence"
|
||||
|
||||
ISODIR=/var/tmp/regtest
|
||||
if ! test -d $ISODIR; then
|
||||
echo "$ISODIR does not exist."
|
||||
echo "Please create it manually, or edit common.bash"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
LOGDIR="/dev/shm"
|
||||
if ! test -d $LOGDIR; then
|
||||
LOGDIR=/tmp
|
||||
fi
|
||||
LOGFILE="$LOGDIR/log.txt"
|
||||
DIFFLOG="$LOGDIR/difflog.txt"
|
||||
NEWLOG="$LOGDIR/newlog.txt"
|
||||
TMPLOG="$LOGDIR/tmplog.txt"
|
||||
|
||||
MD5SUM=md5sum
|
||||
if ! $MD5SUM $RNDSEQ >/dev/null 2>&1; then
|
||||
MD5SUM=../simple-md5sum
|
||||
fi
|
||||
|
||||
# Assemble sed expressions for removal of variable output contents
|
||||
|
||||
SED_REMOVE_ISO_DIR=$(echo "${ISODIR}/" | sed -e "s/\//\\\\\//g")
|
||||
SED_REMOVE_DEV_SHM=$(echo "/dev/shm/" | sed -e "s/\//\\\\\//g")
|
||||
|
||||
# Usage
|
||||
|
||||
if test "$1" == "--help" || test "$1" == "-h"; then
|
||||
echo "Usage: $0 [gui] [all|cont <test case>]"
|
||||
exit 0;
|
||||
fi
|
||||
|
||||
doall="no"
|
||||
cont_at="false"
|
||||
gui_mode="false"
|
||||
|
||||
param=($*)
|
||||
|
||||
case "${param[0]}" in
|
||||
gui)
|
||||
gui_mode="true"
|
||||
param[0]="${param[1]}"
|
||||
param[1]="${param[2]}"
|
||||
;;
|
||||
esac
|
||||
|
||||
case "${param[0]}" in
|
||||
all)
|
||||
doall="yes"
|
||||
;;
|
||||
cont)
|
||||
doall="yes"
|
||||
cont_at="${param[1]}"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Sanity check
|
||||
|
||||
echo -n "Checking for $NEWVER: "
|
||||
if test -x $NEWVER; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "missing."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
### Helper functions
|
||||
|
||||
# See if file needs to be created
|
||||
|
||||
function file_exists()
|
||||
{
|
||||
if test -f $1; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
if test -n "${FILE_MSG}"; then
|
||||
FILE_MSG="$FILE_MSG\n (file $1 was created)"
|
||||
else
|
||||
FILE_MSG=" (file $1 was created)"
|
||||
fi
|
||||
return 1
|
||||
}
|
||||
|
||||
# See if a specific test should be performed
|
||||
|
||||
function try()
|
||||
{ local doit=$(grep "${CODEC_PREFIX}_$2 " $CONFIGFILE)
|
||||
|
||||
if test -z "$doit"; then
|
||||
echo "Config for ${CODEC_PREFIX}_$2 missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test "$cont_at" != "false" && test "$cont_at" != "${CODEC_PREFIX}_$2"; then
|
||||
return 1
|
||||
else
|
||||
cont_at="false"
|
||||
fi
|
||||
|
||||
doit=$(echo $doit | cut -d\ -f 2)
|
||||
|
||||
if test $doall = "yes" || test $doit = "yes"; then
|
||||
echo -n "Test case: $1 - "
|
||||
return 0
|
||||
else
|
||||
# echo "Skipping: $1 ($doit, ${CODEC_PREFIX}_$2)"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Change the configuration file for the GUI mode
|
||||
|
||||
function replace_config()
|
||||
{ local attribute="$1"
|
||||
local value=$(echo "$2" | sed -e "s/\//\\\\\//g")
|
||||
|
||||
if test "$gui_mode" == "false"; then
|
||||
return
|
||||
fi
|
||||
|
||||
if ! test -f $LOGDIR/.dvdisaster-regtest; then
|
||||
cp .dvdisaster-default $LOGDIR/.dvdisaster-regtest
|
||||
fi
|
||||
|
||||
cp $LOGDIR/.dvdisaster-regtest $LOGDIR/.dvdisaster-old
|
||||
sed -e "s/${attribute}:[-_ a-zA-Z0-9\/\.]*/${attribute}: $value/" <$LOGDIR/.dvdisaster-old >$LOGDIR/.dvdisaster-regtest
|
||||
}
|
||||
|
||||
# Perform test and compare results with database
|
||||
|
||||
function run_regtest()
|
||||
{ local testsymbol="$1"
|
||||
local testparms="$2"
|
||||
local testiso="$3"
|
||||
local testecc="$4"
|
||||
local testeccopt=""
|
||||
local image_md5=""
|
||||
local ecc_md5=""
|
||||
local pass="true"
|
||||
|
||||
local fail_on_bad=$(grep "FAIL_ON_BAD" $CONFIGFILE)
|
||||
fail_on_bad=$(echo $fail_on_bad | cut -d\ -f 2)
|
||||
|
||||
local spawn_log_window=$(grep "SPAWN_LOG_WINDOW" $CONFIGFILE)
|
||||
spawn_log_window=$(echo $spawn_log_window | cut -d\ -f 2)
|
||||
|
||||
if test -n "${testecc}"; then
|
||||
testeccopt="-e ${testecc}"
|
||||
fi
|
||||
|
||||
REFLOG=${DATABASE}/${CODEC_PREFIX}_${testsymbol}
|
||||
|
||||
if test "$gui_mode" == "false"; then
|
||||
rm -f $NEWLOG
|
||||
|
||||
echo "LANG=en_EN.UTF-8 $NEWVER -i${testiso} ${testeccopt} ${extra_args} ${testparms}" >>$LOGFILE
|
||||
LANG=en_EN.UTF-8 $NEWVER -i${testiso} ${testeccopt} ${extra_args} ${testparms} 2>&1 | tail -n +3 >>$NEWLOG
|
||||
|
||||
if ! test -r $REFLOG; then
|
||||
echo -e "FAIL\n$REFLOG missing in log file database"
|
||||
return
|
||||
fi
|
||||
|
||||
# ignore the memory tracker line when no memory leaks
|
||||
# have been found
|
||||
|
||||
grep -v "dvdisaster: No memory leaks found." $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
|
||||
# ignore log lines specified by user
|
||||
|
||||
if test -n "$IGNORE_LOG_LINE"; then
|
||||
egrep -v "$IGNORE_LOG_LINE" $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
fi
|
||||
|
||||
if ! diff <(tail -n +3 $REFLOG) <(sed -e "s/${SED_REMOVE_ISO_DIR}//g" $NEWLOG | sed -e "s/${SED_REMOVE_DEV_SHM}//g") >${DIFFLOG}; then
|
||||
echo "BAD; diffs found:"
|
||||
cat ${DIFFLOG}
|
||||
pass="false"
|
||||
fi
|
||||
else # gui mode
|
||||
replace_config last-image "$testiso"
|
||||
if test -n "${testecc}"; then
|
||||
replace_config last-ecc "$testecc"
|
||||
fi
|
||||
|
||||
if test "$spawn_log_window" == "yes"; then
|
||||
echo LANG=en_EN.UTF-8 $NEWVER $extra_args --resource-file $LOGDIR/.dvdisaster-regtest >$NEWLOG
|
||||
xterm -geometry +0+0 -e tail -n 50 -f $NEWLOG &
|
||||
xterm_pid=$!
|
||||
fi
|
||||
|
||||
LANG=en_EN.UTF-8 $NEWVER $extra_args --resource-file $LOGDIR/.dvdisaster-regtest >>$NEWLOG 2>&1
|
||||
rm -f $LOGDIR/.dvdisaster-regtest
|
||||
fi
|
||||
|
||||
unset extra_args
|
||||
|
||||
image_md5=$(head -n 1 $REFLOG)
|
||||
ecc_md5=$(head -n 2 $REFLOG | tail -n 1)
|
||||
|
||||
if test ${image_md5} != "ignore"; then
|
||||
md5=$($MD5SUM ${testiso} | cut -d\ -f 1)
|
||||
if test "$image_md5" != "$md5"; then
|
||||
echo "BAD; md5 sum mismatch in image file:"
|
||||
echo "... expected image: $image_md5"
|
||||
echo "... generated image: $md5"
|
||||
pass="false"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test ${ecc_md5} != "ignore"; then
|
||||
md5=$($MD5SUM ${testecc} | cut -d\ -f 1)
|
||||
if test "$ecc_md5" != "$md5"; then
|
||||
echo "BAD; md5 sum mismatch in ecc file:"
|
||||
echo "... expected ecc: $ecc_md5"
|
||||
echo "... generated ecc: $md5"
|
||||
pass="false"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test ${pass} == "true"; then
|
||||
echo "GOOD"
|
||||
else
|
||||
echo "test symbol for config: $testsymbol"
|
||||
if test "$fail_on_bad" == "yes"; then
|
||||
next=$(grep -A 1 ${CODEC_PREFIX}_$testsymbol config.txt | tail -n 1 | cut -d\ -f 1)
|
||||
echo "FAIL_ON_BAD set to yes -- exiting"
|
||||
if test "$gui_mode" == "true"; then
|
||||
guiarg="gui"
|
||||
fi
|
||||
echo "$0 $guiarg cont ${CODEC_PREFIX}_$testsymbol resumes tests here;"
|
||||
if test -n "$next"; then
|
||||
echo "$0 $guiarg cont $next skips failed test."
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$gui_mode" == "true" && test "$spawn_log_window" == "yes"; then
|
||||
read -n 1 -p "Press q to quit; any other key to continue." -e answer
|
||||
kill $xterm_pid
|
||||
if test "$answer" == "q"; then
|
||||
echo "$0 gui cont ${CODEC_PREFIX}_$testsymbol resumes this test."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$FILE_MSG"; then
|
||||
echo -e "$FILE_MSG"
|
||||
FILE_MSG=""
|
||||
fi
|
||||
}
|
||||
617
regtest/config.txt
Normal file
617
regtest/config.txt
Normal file
@@ -0,0 +1,617 @@
|
||||
# Global toggles
|
||||
|
||||
FAIL_ON_BAD yes
|
||||
SPAWN_LOG_WINDOW no
|
||||
|
||||
### RS01 tests
|
||||
|
||||
# Verify tests
|
||||
RS01_good no
|
||||
RS01_good_quick no
|
||||
RS01_no_files no
|
||||
RS01_no_image no
|
||||
RS01_no_ecc no
|
||||
RS01_defective_image_no_ecc no
|
||||
RS01_plus56_bytes no
|
||||
RS01_image_plus56_bytes no
|
||||
RS01_ecc_plus56_bytes no
|
||||
RS01_normal_image_ecc_plus56b no
|
||||
RS01_image_plus56b_normal_ecc no
|
||||
RS01_image_few_bytes_shorter no
|
||||
RS01_image_few_bytes_longer no
|
||||
RS01_truncated_by_bytes no
|
||||
RS01_truncated no
|
||||
RS01_plus1 no
|
||||
RS01_plus17 no
|
||||
RS01_defective_with_ecc no
|
||||
RS01_missing_sectors_with_ecc no
|
||||
RS01_crc_errors_with_ecc no
|
||||
RS01_crc_in_fingerprint no
|
||||
RS01_missing_fingerprint no
|
||||
RS01_missing_ecc_header no
|
||||
RS01_ecc_header_crc_error no
|
||||
RS01_uncorrectable_dsm_in_image no
|
||||
RS01_uncorrectable_dsm_in_image_verbose no
|
||||
RS01_uncorrectable_dsm_in_image2 no
|
||||
RS01_uncorrectable_dsm_in_image2_verbose no
|
||||
|
||||
# Create tests
|
||||
|
||||
RS01_ecc_create no
|
||||
RS01_ecc_missing_image no
|
||||
RS01_ecc_no_read_perm no
|
||||
RS01_ecc_no_write_perm no
|
||||
RS01_ecc_create_plus56 no
|
||||
RS01_ecc_missing_sectors no
|
||||
RS01_ecc_create_after_read no
|
||||
RS01_ecc_recreate_after_read_rs01 no
|
||||
RS01_ecc_recreate_after_read_rs02 no
|
||||
RS01_ecc_recreate_after_read_rs03i no
|
||||
RS01_ecc_recreate_after_read_rs03f no
|
||||
RS01_ecc_create_after_partial_read no
|
||||
|
||||
# Repair tests
|
||||
|
||||
RS01_fix_good no
|
||||
RS01_fix_no_read_perm no
|
||||
RS01_fix_no_read_perm_ecc no
|
||||
RS01_fix_good_plus56 no
|
||||
RS01_fix_no_write_perm no
|
||||
RS01_fix_missing_sectors no
|
||||
RS01_fix_crc_errors no
|
||||
RS01_fix_additional_sector no
|
||||
RS01_fix_plus17 no
|
||||
RS01_fix_plus17_truncate no
|
||||
RS01_fix_plus56 no
|
||||
RS01_fix_plus56_plus17 no
|
||||
RS01_fix_plus56_plus1s no
|
||||
RS01_fix_plus56_plus2s no
|
||||
RS01_fix_plus56_plus17500 no
|
||||
RS01_fix_truncated no
|
||||
RS01_fix_plus56_truncated no
|
||||
RS01_fix_plus56_little_truncated no
|
||||
|
||||
# Scanning tests
|
||||
|
||||
RS01_scan_no_ecc no
|
||||
RS01_scan_no_device no
|
||||
RS01_scan_no_device_access no
|
||||
RS01_scan_defective_no_ecc no
|
||||
RS01_scan_defective_no_ecc_again no
|
||||
RS01_scan_defective_large_skip no
|
||||
RS01_scan_new_with_range_no_ecc no
|
||||
RS01_scan_new_with_invalid_range_no_ecc no
|
||||
RS01_scan_with_ecc no
|
||||
RS01_scan_with_non_existing_ecc no
|
||||
RS01_scan_with_no_permission_for_ecc no
|
||||
RS01_scan_crc_errors_with_ecc no
|
||||
RS01_scan_shorter_with_ecc no
|
||||
RS01_scan_longer_with_ecc no
|
||||
RS01_scan_tao_tail_with_ecc no
|
||||
RS01_scan_no_tao_tail_with_ecc no
|
||||
RS01_scan_more_missing_at_end_with_ecc no
|
||||
RS01_scan_with_double_ecc no
|
||||
RS01_scan_with_incompatible_ecc no
|
||||
RS01_scan_with_hardware_failure no
|
||||
RS01_scan_with_ignored_hardware_failure no
|
||||
RS01_scan_medium_with_dsm no
|
||||
|
||||
# Reading tests (linear)
|
||||
|
||||
RS01_read_no_ecc no
|
||||
RS01_read_no_ecc_good_file no
|
||||
RS01_read_no_device no
|
||||
RS01_read_no_device_access no
|
||||
RS01_read_defective_no_ecc no
|
||||
RS01_read_defective_no_ecc_again no
|
||||
RS01_read_defective_large_skip no
|
||||
RS01_read_truncated_no_ecc no
|
||||
RS01_read_truncated_no_ecc_again no
|
||||
RS01_read_multipass_no_ecc_again no
|
||||
RS01_read_with_gap_no_ecc no
|
||||
RS01_read_new_with_range_no_ecc no
|
||||
RS01_read_new_with_invalid_range_no_ecc no
|
||||
RS01_read_two_missing_secs_no_ecc no
|
||||
RS01_read_with_ecc no
|
||||
RS01_read_with_ecc_good_file no
|
||||
RS01_read_with_non_existing_ecc no
|
||||
RS01_read_with_no_permission_for_ecc no
|
||||
RS01_read_crc_errors_with_ecc no
|
||||
RS01_read_shorter_with_ecc no
|
||||
RS01_read_longer_with_ecc no
|
||||
RS01_read_tao_tail_with_ecc no
|
||||
RS01_read_no_tao_tail_with_ecc no
|
||||
RS01_read_more_missing_at_end_with_ecc no
|
||||
RS01_read_wrong_fp_with_ecc no
|
||||
RS01_read_with_double_ecc no
|
||||
RS01_read_with_incompatible_ecc no
|
||||
RS01_read_with_hardware_failure no
|
||||
RS01_read_with_ignored_hardware_failure no
|
||||
RS01_read_multipass_partial_success no
|
||||
RS01_read_second_pass_with_ecc_success no
|
||||
RS01_read_second_pass_with_crc_error no
|
||||
RS01_read_medium_with_dsm no
|
||||
RS01_read_medium_with_dsm_verbose no
|
||||
RS01_read_medium_with_dsm_in_image no
|
||||
RS01_read_medium_with_dsm_in_image_verbose no
|
||||
RS01_read_medium_with_dsm_in_image2 no
|
||||
RS01_read_medium_with_dsm_in_image2_verbose no
|
||||
|
||||
# Reading tests (adaptive)
|
||||
|
||||
RS01_adaptive_good no
|
||||
RS01_adaptive_no_ecc no
|
||||
RS01_adaptive_no_device no
|
||||
RS01_adaptive_no_device_access no
|
||||
RS01_adaptive_defective_no_ecc no
|
||||
RS01_adaptive_defective_large_skip no
|
||||
RS01_adaptive_truncated_no_ecc no
|
||||
RS01_adaptive_truncated_no_ecc_again no
|
||||
RS01_adaptive_with_gap_no_ecc no
|
||||
RS01_adaptive_with_gap_no_ecc2 no
|
||||
RS01_adaptive_with_gap_no_ecc3 no
|
||||
RS01_adaptive_new_with_range_no_ecc no
|
||||
RS01_adaptive_new_with_invalid_range_no_ecc no
|
||||
RS01_adaptive_with_no_permission_for_ecc no
|
||||
RS01_adaptive_crc_errors_with_ecc no
|
||||
RS01_adaptive_shorter_with_ecc no
|
||||
RS01_adaptive_longer_with_ecc no
|
||||
RS01_adaptive_tao_tail_with_ecc no
|
||||
RS01_adaptive_no_tao_tail_with_ecc no
|
||||
RS01_adaptive_wrong_fp_with_ecc no
|
||||
RS01_adaptive_with_double_ecc no
|
||||
RS01_adaptive_with_incompatible_ecc no
|
||||
RS01_adaptive_with_hardware_failure no
|
||||
RS01_adaptive_with_ignored_hardware_failure no
|
||||
RS01_adaptive_medium_with_dsm no
|
||||
|
||||
### RS02 tests
|
||||
|
||||
# Verify tests
|
||||
RS02_good no
|
||||
RS02_good_quick no
|
||||
RS02_no_image no
|
||||
RS02_truncated no
|
||||
RS02_plus1 no
|
||||
RS02_plus17 no
|
||||
RS02_bad_header no
|
||||
RS02_bad_headers no
|
||||
RS02_missing_headers no
|
||||
RS02_missing_data_sectors no
|
||||
RS02_missing_crc_sectors no
|
||||
RS02_missing_ecc_sectors no
|
||||
RS02_data_bad_byte no
|
||||
RS02_crc_bad_byte no
|
||||
RS02_ecc_bad_byte no
|
||||
RS02_good_0_offset no
|
||||
RS02_good_150_offset no
|
||||
RS02_bad_master no
|
||||
RS02_modulo_glitch no
|
||||
RS02_modulo_glitch2 no
|
||||
RS02_modulo_glitch3 no
|
||||
RS02_modulo_glitch4 no
|
||||
RS02_with_rs01_file no
|
||||
RS02_with_wrong_rs01_file no
|
||||
RS02_with_rs03_file no
|
||||
RS02_with_wrong_rs03_file no
|
||||
RS02_uncorrectable_dsm_in_image no
|
||||
RS02_uncorrectable_dsm_in_image_verbose no
|
||||
RS02_uncorrectable_dsm_in_image2 no
|
||||
RS02_uncorrectable_dsm_in_image2_verbose no
|
||||
RS02_uncorrectable_dsm_in_image3 no
|
||||
|
||||
# Creation tests
|
||||
RS02_ecc_create no
|
||||
RS02_ecc_missing_image no
|
||||
RS02_ecc_no_read_perm no
|
||||
RS02_ecc_no_write_perm no
|
||||
RS02_ecc_from_rs02 no
|
||||
RS02_ecc_from_rs03 no
|
||||
RS02_ecc_from_larger_rs02 no
|
||||
RS02_ecc_from_rs02_non_blocksize no
|
||||
RS02_ecc_from_rs03_non_blocksize no
|
||||
RS02_ecc_from_larger_rs02_non_blocksize no
|
||||
RS02_ecc_non_blocksize no
|
||||
RS02_ecc_missing_sectors no
|
||||
RS02_ecc_create_after_read no
|
||||
RS02_ecc_recreate_after_read_rs01 no
|
||||
RS02_ecc_recreate_after_read_rs02 no
|
||||
RS02_ecc_recreate_after_read_rs03i no
|
||||
RS02_ecc_recreate_after_read_rs03f no
|
||||
RS02_ecc_create_after_partial_read no
|
||||
|
||||
# Repair test
|
||||
RS02_fix_no_read_perm no
|
||||
RS02_fix_no_write_perm no
|
||||
RS02_fix_good_image no
|
||||
RS02_fix_image_plus137 no
|
||||
RS02_fix_image_error_in_plus137 no
|
||||
RS02_fix_truncated_image no
|
||||
RS02_fix_trailing_bytes no
|
||||
RS02_fix_trailing_tao no
|
||||
RS02_fix_trailing_garbage no
|
||||
RS02_fix_trailing_garbage2 no
|
||||
RS02_fix_bad_master no
|
||||
RS02_fix_bad_header no
|
||||
RS02_fix_bad_headers no
|
||||
RS02_fix_missing_headers no
|
||||
RS02_fix_missing_data_sectors no
|
||||
RS02_fix_missing_crc_sectors no
|
||||
RS02_fix_missing_ecc_sectors no
|
||||
RS02_fix_large_file no
|
||||
RS02_fix_data_bad_byte no
|
||||
RS02_fix_crc_bad_byte no
|
||||
RS02_fix_ecc_bad_byte no
|
||||
RS02_fix_good_0_offset no
|
||||
RS02_fix_good_150_offset no
|
||||
RS02_fix_with_rs01_file no
|
||||
RS02_fix_with_rs03_file no
|
||||
|
||||
# Scan tests
|
||||
|
||||
RS02_scan_good no
|
||||
RS02_scan_shorter no
|
||||
RS02_scan_longer no
|
||||
RS02_scan_tao_tail no
|
||||
RS02_scan_no_tao_tail no
|
||||
RS02_scan_incompatible_ecc no
|
||||
RS02_scan_bad_header no
|
||||
RS02_scan_bad_headers no
|
||||
RS02_scan_missing_data_sectors no
|
||||
RS02_scan_missing_crc_sectors no
|
||||
RS02_scan_missing_ecc_sectors no
|
||||
RS02_scan_data_bad_byte no
|
||||
RS02_scan_crc_bad_byte no
|
||||
RS02_scan_ecc_bad_byte no
|
||||
RS02_scan_modulo_glitch no
|
||||
RS02_scan_modulo_glitch2 no
|
||||
RS02_scan_modulo_glitch3 no
|
||||
RS02_scan_modulo_glitch4 no
|
||||
RS02_scan_with_rs01_file no
|
||||
RS02_scan_with_wrong_rs01_file no
|
||||
RS02_scan_with_rs03_file no
|
||||
RS02_scan_with_wrong_rs03_file no
|
||||
|
||||
# Reading tests (linear)
|
||||
|
||||
RS02_read_good no
|
||||
RS02_read_good_file no
|
||||
RS02_read_good_verbose no
|
||||
RS02_read_shorter no
|
||||
RS02_read_longer no
|
||||
RS02_read_tao_tail no
|
||||
RS02_read_no_tao_tail no
|
||||
RS02_read_incompatible_ecc no
|
||||
RS02_read_bad_master no
|
||||
RS02_read_bad_master_exhaustive no
|
||||
RS02_read_bad_header no
|
||||
RS02_read_bad_headers no
|
||||
RS02_read_missing_data_sectors no
|
||||
RS02_read_missing_crc_sectors no
|
||||
RS02_read_missing_ecc_sectors no
|
||||
RS02_read_data_bad_byte no
|
||||
RS02_read_crc_bad_byte no
|
||||
RS02_read_ecc_bad_byte no
|
||||
RS02_read_modulo_glitch no
|
||||
RS02_read_modulo_glitch2 no
|
||||
RS02_read_modulo_glitch3 no
|
||||
RS02_read_modulo_glitch4 no
|
||||
RS02_read_with_rs01_file no
|
||||
RS02_read_with_wrong_rs01_file no
|
||||
RS02_read_with_rs03_file no
|
||||
RS02_read_with_wrong_rs03_file no
|
||||
|
||||
# Reading tests (adaptive)
|
||||
|
||||
RS02_adaptive_good no
|
||||
RS02_adaptive_good_file no
|
||||
RS02_adaptive_good_verbose no
|
||||
RS02_adaptive_shorter no
|
||||
RS02_adaptive_longer no
|
||||
RS02_adaptive_tao_tail no
|
||||
RS02_adaptive_no_tao_tail no
|
||||
RS02_adaptive_incompatible_ecc no
|
||||
RS02_adaptive_bad_header no
|
||||
RS02_adaptive_bad_headers no
|
||||
RS02_adaptive_missing_data_sectors no
|
||||
RS02_adaptive_missing_crc_sectors no
|
||||
RS02_adaptive_missing_ecc_sectors no
|
||||
RS02_adaptive_data_bad_byte no
|
||||
RS02_adaptive_crc_bad_byte no
|
||||
RS02_adaptive_ecc_bad_byte no
|
||||
RS02_adaptive_modulo_glitch no
|
||||
RS02_adaptive_modulo_glitch2 no
|
||||
RS02_adaptive_modulo_glitch3 no
|
||||
RS02_adaptive_modulo_glitch4 no
|
||||
RS02_adaptive_with_rs01_file no
|
||||
RS02_adaptive_with_wrong_rs01_file no
|
||||
RS02_adaptive_with_rs03_file no
|
||||
RS02_adaptive_with_wrong_rs03_file no
|
||||
|
||||
### RS03 augmented image tests
|
||||
|
||||
# Verify tests
|
||||
|
||||
RS03i_good no
|
||||
RS03i_good_quick no
|
||||
RS03i_no_image no
|
||||
RS03i_truncated no
|
||||
RS03i_plus1 no
|
||||
RS03i_plus17 no
|
||||
RS03i_plus_56_bytes no
|
||||
RS03i_bad_crc_cookie no
|
||||
RS03i_bad_crc_checksum no
|
||||
RS03i_missing_crc_sectors no
|
||||
RS03i_missing_data_sectors no
|
||||
RS03i_missing_ecc_sectors no
|
||||
RS03i_data_bad_byte no
|
||||
RS03i_ecc_bad_byte no
|
||||
RS03i_layer_multiple no
|
||||
RS03i_no_padding no
|
||||
RS03i_with_rs01_file no
|
||||
RS03i_with_wrong_rs01_file no
|
||||
RS03i_with_rs03_file no
|
||||
RS03i_with_wrong_rs03_file no
|
||||
RS03i_crc_section_with_uncorrectable_dsm no
|
||||
RS03i_uncorrectable_dsm_in_image no
|
||||
RS03i_uncorrectable_dsm_in_image_verbose no
|
||||
RS03i_ecc_section_with_uncorrectable_dsm no
|
||||
RS03i_uncorrectable_dsm_in_image2 no
|
||||
RS03i_uncorrectable_dsm_in_image2_verbose no
|
||||
RS03i_missing_iso_header no
|
||||
RS03i_missing_header no
|
||||
RS03i_missing_header2 no
|
||||
RS03i_missing_header3 no
|
||||
RS03i_missing_header4 no
|
||||
RS03i_missing_header_truncated no
|
||||
RS03i_missing_header_no_crcsec no
|
||||
RS03i_random_image no
|
||||
RS03i_rediscover_8_roots no
|
||||
RS03i_rediscover_8_roots2 no
|
||||
RS03i_rediscover_170_roots no
|
||||
RS03i_rediscover_170_roots2 no
|
||||
RS03i_rediscover_170_roots_padding no
|
||||
RS03i_rediscover_170_roots_padding2 no
|
||||
RS03i_with_ecc_file_header no
|
||||
RS03i_with_ecc_file_crc_block no
|
||||
|
||||
# Creation tests
|
||||
|
||||
RS03i_ecc_create no
|
||||
RS03i_ecc_missing_image no
|
||||
RS03i_ecc_no_read_perm no
|
||||
RS03i_ecc_no_write_perm no
|
||||
RS03i_ecc_from_rs03 no
|
||||
RS03i_ecc_from_rs02 no
|
||||
RS03i_ecc_from_larger_rs03 no
|
||||
RS03i_ecc_from_rs02_non_blocksize no
|
||||
RS03i_ecc_from_rs03_non_blocksize no
|
||||
RS03i_ecc_from_larger_rs03_non_blocksize no
|
||||
RS03i_ecc_non_blocksize no
|
||||
RS03i_ecc_missing_sectors no
|
||||
RS03i_ecc_layer_multiple no
|
||||
RS03i_ecc_no_padding no
|
||||
RS03i_ecc_create_after_read no
|
||||
RS03i_ecc_recreate_after_read_rs01 no
|
||||
RS03i_ecc_recreate_after_read_rs02 no
|
||||
RS03i_ecc_recreate_after_read_rs03i no
|
||||
RS03i_ecc_recreate_after_read_rs03f no
|
||||
RS03i_ecc_create_after_partial_read no
|
||||
|
||||
# Fixing tests
|
||||
|
||||
RS03i_fix_no_read_perm no
|
||||
RS03i_fix_no_write_perm no
|
||||
RS03i_fix_good_image no
|
||||
RS03i_fix_truncated_image no
|
||||
RS03i_fix_trailing_bytes no
|
||||
RS03i_fix_trailing_tao no
|
||||
RS03i_fix_trailing_garbage no
|
||||
RS03i_fix_trailing_garbage2 no
|
||||
RS03i_fix_correctable no
|
||||
RS03i_fix_border_cases_erasures no
|
||||
RS03i_fix_border_cases_crc_errors no
|
||||
RS03i_fix_layer_multiple no
|
||||
RS03i_fix_no_padding no
|
||||
RS03i_fix_with_rs01_file no
|
||||
RS03i_fix_with_rs03_file no
|
||||
RS03i_fix_with_missing_header no
|
||||
RS03i_fix_with_missing_iso_header no
|
||||
RS03i_fix_with_ecc_file_header no
|
||||
RS03i_fix_with_ecc_file_crc_block no
|
||||
|
||||
# Scanning tests
|
||||
|
||||
RS03i_scan_good no
|
||||
RS03i_scan_good_verbose no
|
||||
RS03i_scan_shorter no
|
||||
RS03i_scan_longer no
|
||||
RS03i_scan_tao_tail no
|
||||
RS03i_scan_no_tao_tail no
|
||||
RS03i_scan_incompatible_ecc no
|
||||
RS03i_scan_bad_header no
|
||||
RS03i_scan_missing_data_sectors no
|
||||
RS03i_scan_missing_crc_sectors no
|
||||
RS03i_scan_missing_ecc_sectors no
|
||||
RS03i_scan_data_bad_byte no
|
||||
RS03i_scan_crc_bad_byte no
|
||||
RS03i_scan_ecc_bad_byte no
|
||||
RS03i_scan_with_rs01_file no
|
||||
RS03i_scan_with_wrong_rs01_file no
|
||||
RS03i_scan_with_rs03_file no
|
||||
RS03i_scan_with_wrong_rs03_file no
|
||||
RS03i_scan_missing_header_not_exhaustive no
|
||||
RS03i_scan_missing_header no
|
||||
RS03i_scan_missing_header2 no
|
||||
RS03i_scan_missing_header3 no
|
||||
RS03i_scan_missing_header4 no
|
||||
RS03i_scan_missing_header_truncated no
|
||||
RS03i_scan_missing_header_no_crcsec no
|
||||
RS03i_scan_random_image no
|
||||
RS03i_scan_rediscover_8_roots no
|
||||
RS03i_scan_rediscover_8_roots2 no
|
||||
RS03i_scan_rediscover_170_roots no
|
||||
RS03i_scan_rediscover_170_roots2 no
|
||||
RS03i_scan_rediscover_170_roots_padding no
|
||||
RS03i_scan_rediscover_170_roots_padding2 no
|
||||
|
||||
# Reading tests (linear)
|
||||
|
||||
RS03i_read_good no
|
||||
RS03i_read_good_verbose no
|
||||
RS03i_read_good_file no
|
||||
RS03i_read_shorter no
|
||||
RS03i_read_longer no
|
||||
RS03i_read_tao_tail no
|
||||
RS03i_read_no_tao_tail no
|
||||
RS03i_read_incompatible_ecc no
|
||||
RS03i_read_bad_header no
|
||||
RS03i_read_bad_header_exhaustive no
|
||||
RS03i_read_missing_data_sectors no
|
||||
RS03i_read_missing_crc_sectors no
|
||||
RS03i_read_missing_ecc_sectors no
|
||||
RS03i_read_data_bad_byte no
|
||||
RS03i_read_crc_bad_byte no
|
||||
RS03i_read_ecc_bad_byte no
|
||||
RS03i_read_with_rs01_file no
|
||||
RS03i_read_with_wrong_rs01_file no
|
||||
RS03i_read_with_rs03_file no
|
||||
RS03i_read_with_wrong_rs03_file no
|
||||
RS03i_read_crc_section_with_uncorrectable_dsm no
|
||||
RS03i_read_with_missing_header no
|
||||
RS03i_read_with_missing_header_exhaustive no
|
||||
RS03i_read_with_missing_iso_header_exhaustive no
|
||||
RS03i_read_with_ecc_file_header no
|
||||
RS03i_read_with_ecc_file_crc_block no
|
||||
|
||||
# Reading tests (adaptive)
|
||||
|
||||
### RS03 error correction file tests
|
||||
|
||||
# Verify tests
|
||||
|
||||
RS03f_good no
|
||||
RS03f_good_quick no
|
||||
RS03f_no_image no
|
||||
RS03f_plus56_bytes no
|
||||
RS03f_no_image_plus56_bytes no
|
||||
RS03f_special_padding no
|
||||
RS03f_special_padding_plus56 no
|
||||
RS03f_normal_image_ecc_plus56_bytes no
|
||||
RS03f_image_plus56_normal_ecc no
|
||||
RS03f_few_bytes_shorter no
|
||||
RS03f_few_bytes_longer no
|
||||
RS03f_few_bytes_shorter2 no
|
||||
RS03f_image_truncated_by5 no
|
||||
RS03f_one_extra_sector no
|
||||
RS03f_17_extra_sectors no
|
||||
RS03f_missing_sectors no
|
||||
RS03f_crc_errors no
|
||||
RS03f_mixed_errors no
|
||||
RS03f_crc_error_in_fingerprint no
|
||||
RS03f_fingerprint_unreadable no
|
||||
RS03f_missing_ecc_header no
|
||||
RS03f_missing_ecc_header_and_crc no
|
||||
RS03f_missing_ecc_header_and_defective_crc no
|
||||
RS03f_ecc_header_crc_error no
|
||||
RS03f_ecc_file_truncated no
|
||||
RS03f_ecc_file_plus_garbage no
|
||||
RS03f_ecc_file_cookieless_crc no
|
||||
RS03f_ecc_file_defective_crc no
|
||||
RS03f_ecc_file_defective_ecc no
|
||||
RS03f_ecc_file_missing_crc no
|
||||
RS03f_ecc_file_missing_crc2 no
|
||||
RS03f_ecc_file_missing_crc3 no
|
||||
RS03f_ecc_file_missing_ecc no
|
||||
RS03f_crc_section_with_uncorrectable_dsm no
|
||||
RS03f_uncorrectable_dsm_in_image no
|
||||
RS03f_uncorrectable_dsm_in_image_verbose no
|
||||
RS03f_ecc_section_with_uncorrectable_dsm no
|
||||
RS03f_uncorrectable_dsm_in_image2 no
|
||||
RS03f_uncorrectable_dsm_in_image2_verbose no
|
||||
|
||||
# Create tests
|
||||
|
||||
RS03f_ecc_create no
|
||||
RS03f_ecc_existing_file no
|
||||
RS03f_ecc_missing_image no
|
||||
RS03f_ecc_no_read_perm no
|
||||
RS03f_ecc_no_write_perm no
|
||||
RS03f_ecc_create_plus56 no
|
||||
RS03f_ecc_missing_sectors no
|
||||
RS03f_ecc_create_after_read no
|
||||
RS03f_ecc_recreate_after_read_rs01 no
|
||||
RS03f_ecc_recreate_after_read_rs02 no
|
||||
RS03f_ecc_recreate_after_read_rs03i no
|
||||
RS03f_ecc_recreate_after_read_rs03f no
|
||||
RS03f_ecc_create_after_partial_read no
|
||||
|
||||
# Repair tests
|
||||
|
||||
RS03f_fix_good no
|
||||
RS03f_fix_missing_data_sectors no
|
||||
RS03f_fix_missing_crc_sectors no
|
||||
RS03f_fix_missing_ecc_sectors no
|
||||
RS03f_fix_border_cases_erasures no
|
||||
RS03f_fix_border_cases_crc_errors no
|
||||
RS03f_fix_no_read_perm no
|
||||
RS03f_fix_no_read_perm_ecc no
|
||||
RS03f_fix_no_write_perm no
|
||||
RS03f_fix_no_write_perm_ecc no
|
||||
RS03f_fix_good_plus56 no
|
||||
RS03f_fix_additional_sector no
|
||||
RS03f_fix_plus17 no
|
||||
RS03f_fix_plus17_truncate no
|
||||
RS03f_fix_plus56 no
|
||||
RS03f_fix_plus56_plus17 no
|
||||
RS03f_fix_plus56_plus17_truncate no
|
||||
RS03f_fix_plus56_plus1s no
|
||||
RS03f_fix_plus56_plus2s no
|
||||
RS03f_fix_plus56_plus17500 no
|
||||
RS03f_fix_truncated no
|
||||
RS03f_fix_plus56_truncated no
|
||||
RS03f_fix_plus56_little_truncated no
|
||||
RS03f_fix_ecc_file_truncated no
|
||||
RS03f_fix_missing_ecc_header no
|
||||
|
||||
# Scanning tests
|
||||
|
||||
RS03f_scan_good no
|
||||
RS03f_scan_good_verbose no
|
||||
RS03f_scan_shorter no
|
||||
RS03f_scan_longer no
|
||||
RS03f_scan_tao_tail no
|
||||
RS03f_scan_no_tao_tail no
|
||||
RS03f_scan_incompatible_ecc no
|
||||
RS03f_scan_bad_header no
|
||||
RS03f_scan_missing_data_sectors no
|
||||
RS03f_scan_missing_crc_sectors no
|
||||
RS03f_scan_missing_ecc_sectors no
|
||||
RS03f_scan_data_bad_byte no
|
||||
RS03f_scan_crc_bad_byte no
|
||||
RS03f_scan_ecc_bad_byte no
|
||||
RS03f_scan_missing_ecc_header no
|
||||
RS03f_scan_missing_ecc_header_and_crc no
|
||||
RS03f_scan_missing_ecc_header_and_defective_crc no
|
||||
RS03f_scan_ecc_header_crc_error no
|
||||
|
||||
# Reading tests (linear)
|
||||
|
||||
RS03f_read_good no
|
||||
RS03f_read_good_verbose no
|
||||
RS03f_read_good_file no
|
||||
RS03f_read_shorter no
|
||||
RS03f_read_longer no
|
||||
RS03f_read_tao_tail no
|
||||
RS03f_read_no_tao_tail no
|
||||
RS03f_read_incompatible_ecc no
|
||||
RS03f_read_bad_header no
|
||||
RS03f_read_missing_data_sectors no
|
||||
RS03f_read_missing_crc_sectors no
|
||||
RS03f_read_missing_ecc_sectors no
|
||||
RS03f_read_data_bad_byte no
|
||||
RS03f_read_crc_bad_byte no
|
||||
RS03f_read_ecc_bad_byte no
|
||||
RS03f_read_crc_section_with_uncorrectable_dsm no
|
||||
|
||||
# Reading tests (adaptive)
|
||||
BIN
regtest/database/.RS02_adaptive_longer.swp
Normal file
BIN
regtest/database/.RS02_adaptive_longer.swp
Normal file
Binary file not shown.
18
regtest/database/RS01_adapive_wrong_fp_with_ecc
Normal file
18
regtest/database/RS01_adapive_wrong_fp_with_ecc
Normal file
@@ -0,0 +1,18 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Adaptive reading: Trying to collect enough data for error correction.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image file does not match the optical disc.
|
||||
|
||||
21
regtest/database/RS01_adaptive_crc_errors_with_ecc
Normal file
21
regtest/database/RS01_adaptive_crc_errors_with_ecc
Normal file
File diff suppressed because one or more lines are too long
213
regtest/database/RS01_adaptive_defective_large_skip
Normal file
213
regtest/database/RS01_adaptive_defective_large_skip
Normal file
File diff suppressed because one or more lines are too long
203
regtest/database/RS01_adaptive_defective_no_ecc
Normal file
203
regtest/database/RS01_adaptive_defective_no_ecc
Normal file
File diff suppressed because one or more lines are too long
15
regtest/database/RS01_adaptive_good
Normal file
15
regtest/database/RS01_adaptive_good
Normal file
File diff suppressed because one or more lines are too long
18
regtest/database/RS01_adaptive_longer_with_ecc
Normal file
18
regtest/database/RS01_adaptive_longer_with_ecc
Normal file
File diff suppressed because one or more lines are too long
24
regtest/database/RS01_adaptive_medium_with_dsm
Normal file
24
regtest/database/RS01_adaptive_medium_with_dsm
Normal file
File diff suppressed because one or more lines are too long
24
regtest/database/RS01_adaptive_new_with_invalid_range_no_ecc
Normal file
24
regtest/database/RS01_adaptive_new_with_invalid_range_no_ecc
Normal file
@@ -0,0 +1,24 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Adaptive reading: Stopping when unreadable intervals < 16.
|
||||
* Warning: Using adaptive reading without error correction data
|
||||
* has little advantage over linear reading, but may
|
||||
* cause significant wear on the drive due to excessive
|
||||
* seek operations.
|
||||
* Please consider using linear reading instead.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Sectors must be in range [0..20999].
|
||||
|
||||
|
||||
24
regtest/database/RS01_adaptive_new_with_range_no_ecc
Normal file
24
regtest/database/RS01_adaptive_new_with_range_no_ecc
Normal file
File diff suppressed because one or more lines are too long
6
regtest/database/RS01_adaptive_no_device
Normal file
6
regtest/database/RS01_adaptive_no_device
Normal file
@@ -0,0 +1,6 @@
|
||||
ignore
|
||||
ignore
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Could not open /dev/sdz: No such file or directory
|
||||
|
||||
6
regtest/database/RS01_adaptive_no_device_access
Normal file
6
regtest/database/RS01_adaptive_no_device_access
Normal file
@@ -0,0 +1,6 @@
|
||||
ignore
|
||||
ignore
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Could not open sdz: Permission denied
|
||||
|
||||
20
regtest/database/RS01_adaptive_no_ecc
Normal file
20
regtest/database/RS01_adaptive_no_ecc
Normal file
File diff suppressed because one or more lines are too long
15
regtest/database/RS01_adaptive_no_tao_tail_with_ecc
Normal file
15
regtest/database/RS01_adaptive_no_tao_tail_with_ecc
Normal file
File diff suppressed because one or more lines are too long
17
regtest/database/RS01_adaptive_shorter_with_ecc
Normal file
17
regtest/database/RS01_adaptive_shorter_with_ecc
Normal file
File diff suppressed because one or more lines are too long
18
regtest/database/RS01_adaptive_tao_tail_with_ecc
Normal file
18
regtest/database/RS01_adaptive_tao_tail_with_ecc
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_adaptive_truncated_no_ecc
Normal file
20
regtest/database/RS01_adaptive_truncated_no_ecc
Normal file
File diff suppressed because one or more lines are too long
140
regtest/database/RS01_adaptive_truncated_no_ecc_again
Normal file
140
regtest/database/RS01_adaptive_truncated_no_ecc_again
Normal file
File diff suppressed because one or more lines are too long
15
regtest/database/RS01_adaptive_with_double_ecc
Normal file
15
regtest/database/RS01_adaptive_with_double_ecc
Normal file
File diff suppressed because one or more lines are too long
24
regtest/database/RS01_adaptive_with_gap_no_ecc
Normal file
24
regtest/database/RS01_adaptive_with_gap_no_ecc
Normal file
File diff suppressed because one or more lines are too long
24
regtest/database/RS01_adaptive_with_gap_no_ecc2
Normal file
24
regtest/database/RS01_adaptive_with_gap_no_ecc2
Normal file
File diff suppressed because one or more lines are too long
23
regtest/database/RS01_adaptive_with_gap_no_ecc3
Normal file
23
regtest/database/RS01_adaptive_with_gap_no_ecc3
Normal file
File diff suppressed because one or more lines are too long
27
regtest/database/RS01_adaptive_with_hardware_failure
Normal file
27
regtest/database/RS01_adaptive_with_hardware_failure
Normal file
File diff suppressed because one or more lines are too long
36
regtest/database/RS01_adaptive_with_ignored_hardware_failure
Normal file
36
regtest/database/RS01_adaptive_with_ignored_hardware_failure
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_adaptive_with_incompatible_ecc
Normal file
20
regtest/database/RS01_adaptive_with_incompatible_ecc
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_adaptive_with_no_permission_for_ecc
Normal file
20
regtest/database/RS01_adaptive_with_no_permission_for_ecc
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_crc_errors_with_ecc
Normal file
21
regtest/database/RS01_crc_errors_with_ecc
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_crc_in_fingerprint
Normal file
21
regtest/database/RS01_crc_in_fingerprint
Normal file
File diff suppressed because one or more lines are too long
15
regtest/database/RS01_defective_image_no_ecc
Normal file
15
regtest/database/RS01_defective_image_no_ecc
Normal file
@@ -0,0 +1,15 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
rs01-tmp.iso: present, contains 21000 medium sectors.
|
||||
- testing sectors : 1%- testing sectors : 2%- testing sectors : 3%- testing sectors : 4%- testing sectors : 5%* missing sectors : 1000 - 1049
|
||||
- testing sectors : 6%- testing sectors : 7%- testing sectors : 8%- testing sectors : 9%- testing sectors : 10%- testing sectors : 11%- testing sectors : 12%- testing sectors : 13%- testing sectors : 14%- testing sectors : 15%- testing sectors : 16%- testing sectors : 17%- testing sectors : 18%- testing sectors : 19%- testing sectors : 20%- testing sectors : 21%- testing sectors : 22%- testing sectors : 23%- testing sectors : 24%- testing sectors : 25%- testing sectors : 26%- testing sectors : 27%- testing sectors : 28%- testing sectors : 29%- testing sectors : 30%- testing sectors : 31%- testing sectors : 32%- testing sectors : 33%- testing sectors : 34%- testing sectors : 35%- testing sectors : 36%- testing sectors : 37%- testing sectors : 38%- testing sectors : 39%- testing sectors : 40%- testing sectors : 41%- testing sectors : 42%- testing sectors : 43%- testing sectors : 44%- testing sectors : 45%- testing sectors : 46%- testing sectors : 47%- testing sectors : 48%- testing sectors : 49%- testing sectors : 50%- testing sectors : 51%- testing sectors : 52%- testing sectors : 53%* missing sector : 11230
|
||||
- testing sectors : 54%- testing sectors : 55%- testing sectors : 56%- testing sectors : 57%- testing sectors : 58%- testing sectors : 59%* missing sectors : 12450 - 12457
|
||||
- testing sectors : 60%- testing sectors : 61%- testing sectors : 62%- testing sectors : 63%- testing sectors : 64%- testing sectors : 65%- testing sectors : 66%- testing sectors : 67%- testing sectors : 68%- testing sectors : 69%- testing sectors : 70%- testing sectors : 71%- testing sectors : 72%- testing sectors : 73%- testing sectors : 74%- testing sectors : 75%- testing sectors : 76%- testing sectors : 77%- testing sectors : 78%- testing sectors : 79%- testing sectors : 80%- testing sectors : 81%- testing sectors : 82%- testing sectors : 83%- testing sectors : 84%- testing sectors : 85%- testing sectors : 86%- testing sectors : 87%- testing sectors : 88%- testing sectors : 89%- testing sectors : 90%- testing sectors : 91%- testing sectors : 92%- testing sectors : 93%- testing sectors : 94%- testing sectors : 95%- testing sectors : 96%- testing sectors : 97%- testing sectors : 98%- testing sectors : 99%- testing sectors : 100%* BAD image : 59 sectors missing
|
||||
|
||||
no.ecc: not present
|
||||
|
||||
23
regtest/database/RS01_defective_with_ecc
Normal file
23
regtest/database/RS01_defective_with_ecc
Normal file
File diff suppressed because one or more lines are too long
12
regtest/database/RS01_ecc_create
Normal file
12
regtest/database/RS01_ecc_create
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_ecc_create_after_partial_read
Normal file
20
regtest/database/RS01_ecc_create_after_partial_read
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_ecc_create_after_read
Normal file
20
regtest/database/RS01_ecc_create_after_read
Normal file
File diff suppressed because one or more lines are too long
12
regtest/database/RS01_ecc_create_plus56
Normal file
12
regtest/database/RS01_ecc_create_plus56
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_ecc_header_crc_error
Normal file
20
regtest/database/RS01_ecc_header_crc_error
Normal file
File diff suppressed because one or more lines are too long
14
regtest/database/RS01_ecc_missing_image
Normal file
14
regtest/database/RS01_ecc_missing_image
Normal file
@@ -0,0 +1,14 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening none.iso: No such file or directory.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image file none.iso: No such file or directory.
|
||||
|
||||
15
regtest/database/RS01_ecc_missing_sectors
Normal file
15
regtest/database/RS01_ecc_missing_sectors
Normal file
File diff suppressed because one or more lines are too long
14
regtest/database/RS01_ecc_no_read_perm
Normal file
14
regtest/database/RS01_ecc_no_read_perm
Normal file
@@ -0,0 +1,14 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: Permission denied.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image file rs01-tmp.iso: Permission denied.
|
||||
|
||||
12
regtest/database/RS01_ecc_no_write_perm
Normal file
12
regtest/database/RS01_ecc_no_write_perm
Normal file
File diff suppressed because one or more lines are too long
17
regtest/database/RS01_ecc_plus56_bytes
Normal file
17
regtest/database/RS01_ecc_plus56_bytes
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_ecc_recreate_after_read_rs01
Normal file
21
regtest/database/RS01_ecc_recreate_after_read_rs01
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_ecc_recreate_after_read_rs02
Normal file
21
regtest/database/RS01_ecc_recreate_after_read_rs02
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_ecc_recreate_after_read_rs03f
Normal file
21
regtest/database/RS01_ecc_recreate_after_read_rs03f
Normal file
File diff suppressed because one or more lines are too long
21
regtest/database/RS01_ecc_recreate_after_read_rs03i
Normal file
21
regtest/database/RS01_ecc_recreate_after_read_rs03i
Normal file
File diff suppressed because one or more lines are too long
15
regtest/database/RS01_fix_additional_sector
Normal file
15
regtest/database/RS01_fix_additional_sector
Normal file
@@ -0,0 +1,15 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21001 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
* Warning: Image file is 1 sectors longer than expected.
|
||||
* Assuming this is a TAO mode medium.
|
||||
* 1 sectors will be removed from the image end.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Good! All sectors are already present.
|
||||
28
regtest/database/RS01_fix_crc_errors
Normal file
28
regtest/database/RS01_fix_crc_errors
Normal file
@@ -0,0 +1,28 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
CRC error in sector 0
|
||||
CRC error in sector 190
|
||||
-> Error located in sector 0 at byte 1 (value 01 '.', expected 00 '.')
|
||||
-> Error located in sector 190 at byte 200 (value 8f '.', expected ac '.')
|
||||
2 repaired sectors: 0 190
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%CRC error in sector 20999
|
||||
-> Error located in sector 20999 at byte 500 (value 5b '[', expected 2e '.')
|
||||
1 repaired sectors: 20999
|
||||
Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%CRC error in sector 1200
|
||||
-> Error located in sector 1200 at byte 100 (value 01 '.', expected f0 '.')
|
||||
1 repaired sectors: 1200
|
||||
Ecc progress: 64.2%CRC error in sector 1201
|
||||
-> Error located in sector 1201 at byte 100 (value 01 '.', expected 84 '.')
|
||||
1 repaired sectors: 1201
|
||||
Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 5
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.2; worst = 2.
|
||||
12
regtest/database/RS01_fix_good
Normal file
12
regtest/database/RS01_fix_good
Normal file
@@ -0,0 +1,12 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Good! All sectors are already present.
|
||||
109
regtest/database/RS01_fix_missing_sectors
Normal file
109
regtest/database/RS01_fix_missing_sectors
Normal file
@@ -0,0 +1,109 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
3 repaired sectors: 0 190 2090
|
||||
Ecc progress: 1.0% 1 repaired sectors: 2091
|
||||
Ecc progress: 2.1% 2 repaired sectors: 192 2092
|
||||
Ecc progress: 3.1% 1 repaired sectors: 2093
|
||||
Ecc progress: 4.2% 2 repaired sectors: 2094 20999
|
||||
Ecc progress: 5.2% 2 repaired sectors: 2000 2095
|
||||
Ecc progress: 6.3% 2 repaired sectors: 2001 2096
|
||||
Ecc progress: 7.3% 2 repaired sectors: 2002 2097
|
||||
Ecc progress: 8.4% 2 repaired sectors: 2003 2098
|
||||
Ecc progress: 9.4% 2 repaired sectors: 2004 2099
|
||||
Ecc progress: 10.5% 2 repaired sectors: 2005 2100
|
||||
Ecc progress: 11.5% 2 repaired sectors: 2006 2101
|
||||
Ecc progress: 12.6% 2 repaired sectors: 2007 2102
|
||||
Ecc progress: 13.6% 2 repaired sectors: 2008 2103
|
||||
Ecc progress: 14.7% 2 repaired sectors: 2009 2104
|
||||
Ecc progress: 15.7% 2 repaired sectors: 2010 2105
|
||||
Ecc progress: 16.8% 2 repaired sectors: 2011 2106
|
||||
Ecc progress: 17.8% 2 repaired sectors: 2012 2107
|
||||
Ecc progress: 18.9% 2 repaired sectors: 2013 2108
|
||||
Ecc progress: 20.0% 2 repaired sectors: 2014 2109
|
||||
Ecc progress: 21.0% 3 repaired sectors: 590 2015 2110
|
||||
Ecc progress: 22.1% 3 repaired sectors: 591 2016 2111
|
||||
Ecc progress: 23.1% 3 repaired sectors: 592 2017 2112
|
||||
Ecc progress: 24.2% 3 repaired sectors: 593 2018 2113
|
||||
Ecc progress: 25.2% 3 repaired sectors: 594 2019 2114
|
||||
Ecc progress: 26.3% 3 repaired sectors: 595 2020 2115
|
||||
Ecc progress: 27.3% 3 repaired sectors: 596 2021 2116
|
||||
Ecc progress: 28.4% 3 repaired sectors: 597 2022 2117
|
||||
Ecc progress: 29.4% 3 repaired sectors: 598 2023 2118
|
||||
Ecc progress: 30.5% 3 repaired sectors: 599 2024 2119
|
||||
Ecc progress: 31.5% 3 repaired sectors: 600 2025 2120
|
||||
Ecc progress: 32.6% 3 repaired sectors: 601 2026 2121
|
||||
Ecc progress: 33.6% 3 repaired sectors: 602 2027 2122
|
||||
Ecc progress: 34.7% 3 repaired sectors: 603 2028 2123
|
||||
Ecc progress: 35.7% 3 repaired sectors: 604 2029 2124
|
||||
Ecc progress: 36.8% 3 repaired sectors: 605 2030 2125
|
||||
Ecc progress: 37.8% 3 repaired sectors: 606 2031 2126
|
||||
Ecc progress: 38.9% 3 repaired sectors: 607 2032 2127
|
||||
Ecc progress: 40.0% 3 repaired sectors: 608 2033 2128
|
||||
Ecc progress: 41.0% 3 repaired sectors: 609 2034 2129
|
||||
Ecc progress: 42.1% 3 repaired sectors: 610 2035 2130
|
||||
Ecc progress: 43.1% 3 repaired sectors: 611 2036 2131
|
||||
Ecc progress: 44.2% 3 repaired sectors: 612 2037 2132
|
||||
Ecc progress: 45.2% 3 repaired sectors: 613 2038 2133
|
||||
Ecc progress: 46.3% 3 repaired sectors: 614 2039 2134
|
||||
Ecc progress: 47.3% 3 repaired sectors: 615 2040 2135
|
||||
Ecc progress: 48.4% 3 repaired sectors: 616 2041 2136
|
||||
Ecc progress: 49.4% 3 repaired sectors: 617 2042 2137
|
||||
Ecc progress: 50.5% 3 repaired sectors: 618 2043 2138
|
||||
Ecc progress: 51.5% 3 repaired sectors: 619 2044 2139
|
||||
Ecc progress: 52.6% 2 repaired sectors: 620 2045
|
||||
Ecc progress: 53.6% 3 repaired sectors: 621 2046 2141
|
||||
Ecc progress: 54.7% 3 repaired sectors: 622 2047 2142
|
||||
Ecc progress: 55.7% 3 repaired sectors: 623 2048 2143
|
||||
Ecc progress: 56.8% 3 repaired sectors: 624 2049 2144
|
||||
Ecc progress: 57.8% 3 repaired sectors: 625 2050 2145
|
||||
Ecc progress: 58.9% 3 repaired sectors: 626 2051 2146
|
||||
Ecc progress: 60.0% 3 repaired sectors: 627 2052 2147
|
||||
Ecc progress: 61.0% 3 repaired sectors: 628 2053 2148
|
||||
Ecc progress: 62.1% 3 repaired sectors: 629 2054 2149
|
||||
Ecc progress: 63.1% 3 repaired sectors: 630 2055 2150
|
||||
Ecc progress: 64.2% 3 repaired sectors: 631 2056 2151
|
||||
Ecc progress: 65.2% 3 repaired sectors: 632 2057 2152
|
||||
Ecc progress: 66.3% 3 repaired sectors: 633 2058 2153
|
||||
Ecc progress: 67.3% 3 repaired sectors: 634 2059 2154
|
||||
Ecc progress: 68.4% 3 repaired sectors: 635 2060 2155
|
||||
Ecc progress: 69.4% 3 repaired sectors: 636 2061 2156
|
||||
Ecc progress: 70.5% 3 repaired sectors: 637 2062 2157
|
||||
Ecc progress: 71.5% 3 repaired sectors: 638 2063 2158
|
||||
Ecc progress: 72.6% 3 repaired sectors: 639 2064 2159
|
||||
Ecc progress: 73.6% 3 repaired sectors: 640 2065 2160
|
||||
Ecc progress: 74.7% 3 repaired sectors: 641 2066 2161
|
||||
Ecc progress: 75.7% 3 repaired sectors: 642 2067 2162
|
||||
Ecc progress: 76.8% 3 repaired sectors: 643 2068 2163
|
||||
Ecc progress: 77.8% 3 repaired sectors: 644 2069 2164
|
||||
Ecc progress: 78.9% 3 repaired sectors: 645 2070 2165
|
||||
Ecc progress: 80.0% 3 repaired sectors: 646 2071 2166
|
||||
Ecc progress: 81.0% 3 repaired sectors: 647 2072 2167
|
||||
Ecc progress: 82.1% 3 repaired sectors: 648 2073 2168
|
||||
Ecc progress: 83.1% 3 repaired sectors: 649 2074 2169
|
||||
Ecc progress: 84.2% 2 repaired sectors: 2075 2170
|
||||
Ecc progress: 85.2% 2 repaired sectors: 2076 2171
|
||||
Ecc progress: 86.3% 2 repaired sectors: 2077 2172
|
||||
Ecc progress: 87.3% 2 repaired sectors: 2078 2173
|
||||
Ecc progress: 88.4% 2 repaired sectors: 2079 2174
|
||||
Ecc progress: 89.4% 2 repaired sectors: 2080 2175
|
||||
Ecc progress: 90.5% 2 repaired sectors: 2081 2176
|
||||
Ecc progress: 91.5% 1 repaired sectors: 2082
|
||||
Ecc progress: 92.6% 1 repaired sectors: 2083
|
||||
Ecc progress: 93.6% 1 repaired sectors: 2084
|
||||
Ecc progress: 94.7% 1 repaired sectors: 2085
|
||||
Ecc progress: 95.7% 1 repaired sectors: 2086
|
||||
Ecc progress: 96.8% 1 repaired sectors: 2087
|
||||
Ecc progress: 97.8% 1 repaired sectors: 2088
|
||||
Ecc progress: 98.9% 1 repaired sectors: 2089
|
||||
Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 240
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 2.5; worst = 3.
|
||||
15
regtest/database/RS01_fix_no_read_perm
Normal file
15
regtest/database/RS01_fix_no_read_perm
Normal file
@@ -0,0 +1,15 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: Permission denied.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image file rs01-tmp.iso not present or permission denied.
|
||||
|
||||
|
||||
17
regtest/database/RS01_fix_no_read_perm_ecc
Normal file
17
regtest/database/RS01_fix_no_read_perm_ecc
Normal file
@@ -0,0 +1,17 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
|
||||
No error correction file present.
|
||||
No error correction data recognized in image.
|
||||
|
||||
|
||||
15
regtest/database/RS01_fix_no_write_perm
Normal file
15
regtest/database/RS01_fix_no_write_perm
Normal file
@@ -0,0 +1,15 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: Permission denied.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image file rs01-tmp.iso not present or permission denied.
|
||||
|
||||
|
||||
22
regtest/database/RS01_fix_plus17
Normal file
22
regtest/database/RS01_fix_plus17
Normal file
@@ -0,0 +1,22 @@
|
||||
cc182b17f903e2f9c28a9c1052249a5a
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21017 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
The image file is 17 sectors longer as noted in the
|
||||
ecc file. This might simply be zero padding, especially
|
||||
on dual layer DVD media, but could also mean that
|
||||
the image and ecc files do not belong together.
|
||||
|
||||
Add the --truncate option to the program call
|
||||
to have the superfluous sectors removed.
|
||||
|
||||
13
regtest/database/RS01_fix_plus17_truncate
Normal file
13
regtest/database/RS01_fix_plus17_truncate
Normal file
@@ -0,0 +1,13 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21017 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Image has been truncated by 17 sectors.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Good! All sectors are already present.
|
||||
17
regtest/database/RS01_fix_plus56
Normal file
17
regtest/database/RS01_fix_plus56
Normal file
@@ -0,0 +1,17 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors and 56 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%CRC error in sector 21000
|
||||
-> Error located in sector 21000 at byte 28 (value 5a 'Z', expected 00 '.')
|
||||
1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 1
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
12
regtest/database/RS01_fix_plus56_bytes
Normal file
12
regtest/database/RS01_fix_plus56_bytes
Normal file
@@ -0,0 +1,12 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors and 56 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Good! All sectors are already present.
|
||||
12
regtest/database/RS01_fix_plus56_little_truncated
Normal file
12
regtest/database/RS01_fix_plus56_little_truncated
Normal file
@@ -0,0 +1,12 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors and 50 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Good! All sectors are already present.
|
||||
18
regtest/database/RS01_fix_plus56_plus17
Normal file
18
regtest/database/RS01_fix_plus56_plus17
Normal file
@@ -0,0 +1,18 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21000 medium sectors and 73 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Image has been truncated by 17 bytes.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%CRC error in sector 21000
|
||||
-> Error located in sector 21000 at byte 55 (value 5a 'Z', expected 00 '.')
|
||||
1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 1
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
18
regtest/database/RS01_fix_plus56_plus17500
Normal file
18
regtest/database/RS01_fix_plus56_plus17500
Normal file
@@ -0,0 +1,18 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21008 medium sectors and 1172 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
Image has been truncated by 8 sectors.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%CRC error in sector 21000
|
||||
-> Error located in sector 21000 at byte 55 (value 5a 'Z', expected 00 '.')
|
||||
1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 1
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
20
regtest/database/RS01_fix_plus56_plus1s
Normal file
20
regtest/database/RS01_fix_plus56_plus1s
Normal file
@@ -0,0 +1,20 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21001 medium sectors and 56 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
* Warning: Image file is 1 sectors longer than expected.
|
||||
* Assuming this is a TAO mode medium.
|
||||
* 1 sectors will be removed from the image end.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%CRC error in sector 21000
|
||||
-> Error located in sector 21000 at byte 55 (value 5a 'Z', expected 00 '.')
|
||||
1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 1
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
20
regtest/database/RS01_fix_plus56_plus2s
Normal file
20
regtest/database/RS01_fix_plus56_plus2s
Normal file
@@ -0,0 +1,20 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 21002 medium sectors and 56 bytes.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
* Warning: Image file is 2 sectors longer than expected.
|
||||
* Assuming this is a TAO mode medium.
|
||||
* 2 sectors will be removed from the image end.
|
||||
Ecc progress: 1.0%Ecc progress: 2.1%Ecc progress: 3.1%Ecc progress: 4.2%Ecc progress: 5.2%CRC error in sector 21000
|
||||
-> Error located in sector 21000 at byte 55 (value 5a 'Z', expected 00 '.')
|
||||
1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7%Ecc progress: 76.8%Ecc progress: 77.8%Ecc progress: 78.9%Ecc progress: 80.0%Ecc progress: 81.0%Ecc progress: 82.1%Ecc progress: 83.1%Ecc progress: 84.2%Ecc progress: 85.2%Ecc progress: 86.3%Ecc progress: 87.3%Ecc progress: 88.4%Ecc progress: 89.4%Ecc progress: 90.5%Ecc progress: 91.5%Ecc progress: 92.6%Ecc progress: 93.6%Ecc progress: 94.7%Ecc progress: 95.7%Ecc progress: 96.8%Ecc progress: 97.8%Ecc progress: 98.9%Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 1
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
45
regtest/database/RS01_fix_plus56_truncated
Normal file
45
regtest/database/RS01_fix_plus56_truncated
Normal file
@@ -0,0 +1,45 @@
|
||||
5682971ebd79a980cc31de3a21cde3d1
|
||||
c534a349a3da7e670f0cc4efd68688d2
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 20972 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
* Warning: Image file appears to be truncated.
|
||||
* Consider completing it with another reading pass before going on.
|
||||
1 repaired sectors: 20995
|
||||
Ecc progress: 1.0% 1 repaired sectors: 20996
|
||||
Ecc progress: 2.1% 1 repaired sectors: 20997
|
||||
Ecc progress: 3.1% 1 repaired sectors: 20998
|
||||
Ecc progress: 4.2% 1 repaired sectors: 20999
|
||||
Ecc progress: 5.2% 1 repaired sectors: 21000
|
||||
Ecc progress: 6.3%Ecc progress: 7.3%Ecc progress: 8.4%Ecc progress: 9.4%Ecc progress: 10.5%Ecc progress: 11.5%Ecc progress: 12.6%Ecc progress: 13.6%Ecc progress: 14.7%Ecc progress: 15.7%Ecc progress: 16.8%Ecc progress: 17.8%Ecc progress: 18.9%Ecc progress: 20.0%Ecc progress: 21.0%Ecc progress: 22.1%Ecc progress: 23.1%Ecc progress: 24.2%Ecc progress: 25.2%Ecc progress: 26.3%Ecc progress: 27.3%Ecc progress: 28.4%Ecc progress: 29.4%Ecc progress: 30.5%Ecc progress: 31.5%Ecc progress: 32.6%Ecc progress: 33.6%Ecc progress: 34.7%Ecc progress: 35.7%Ecc progress: 36.8%Ecc progress: 37.8%Ecc progress: 38.9%Ecc progress: 40.0%Ecc progress: 41.0%Ecc progress: 42.1%Ecc progress: 43.1%Ecc progress: 44.2%Ecc progress: 45.2%Ecc progress: 46.3%Ecc progress: 47.3%Ecc progress: 48.4%Ecc progress: 49.4%Ecc progress: 50.5%Ecc progress: 51.5%Ecc progress: 52.6%Ecc progress: 53.6%Ecc progress: 54.7%Ecc progress: 55.7%Ecc progress: 56.8%Ecc progress: 57.8%Ecc progress: 58.9%Ecc progress: 60.0%Ecc progress: 61.0%Ecc progress: 62.1%Ecc progress: 63.1%Ecc progress: 64.2%Ecc progress: 65.2%Ecc progress: 66.3%Ecc progress: 67.3%Ecc progress: 68.4%Ecc progress: 69.4%Ecc progress: 70.5%Ecc progress: 71.5%Ecc progress: 72.6%Ecc progress: 73.6%Ecc progress: 74.7%Ecc progress: 75.7% 1 repaired sectors: 20972
|
||||
Ecc progress: 76.8% 1 repaired sectors: 20973
|
||||
Ecc progress: 77.8% 1 repaired sectors: 20974
|
||||
Ecc progress: 78.9% 1 repaired sectors: 20975
|
||||
Ecc progress: 80.0% 1 repaired sectors: 20976
|
||||
Ecc progress: 81.0% 1 repaired sectors: 20977
|
||||
Ecc progress: 82.1% 1 repaired sectors: 20978
|
||||
Ecc progress: 83.1% 1 repaired sectors: 20979
|
||||
Ecc progress: 84.2% 1 repaired sectors: 20980
|
||||
Ecc progress: 85.2% 1 repaired sectors: 20981
|
||||
Ecc progress: 86.3% 1 repaired sectors: 20982
|
||||
Ecc progress: 87.3% 1 repaired sectors: 20983
|
||||
Ecc progress: 88.4% 1 repaired sectors: 20984
|
||||
Ecc progress: 89.4% 1 repaired sectors: 20985
|
||||
Ecc progress: 90.5% 1 repaired sectors: 20986
|
||||
Ecc progress: 91.5% 1 repaired sectors: 20987
|
||||
Ecc progress: 92.6% 1 repaired sectors: 20988
|
||||
Ecc progress: 93.6% 1 repaired sectors: 20989
|
||||
Ecc progress: 94.7% 1 repaired sectors: 20990
|
||||
Ecc progress: 95.7% 1 repaired sectors: 20991
|
||||
Ecc progress: 96.8% 1 repaired sectors: 20992
|
||||
Ecc progress: 97.8% 1 repaired sectors: 20993
|
||||
Ecc progress: 98.9% 1 repaired sectors: 20994
|
||||
Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 29
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 1.0; worst = 1.
|
||||
111
regtest/database/RS01_fix_truncated
Normal file
111
regtest/database/RS01_fix_truncated
Normal file
@@ -0,0 +1,111 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Opening rs01-tmp.iso: 20731 medium sectors.
|
||||
|
||||
Fix mode(RS01): Repairable sectors will be fixed in the image.
|
||||
* Warning: Image file appears to be truncated.
|
||||
* Consider completing it with another reading pass before going on.
|
||||
3 repaired sectors: 20805 20900 20995
|
||||
Ecc progress: 1.0% 3 repaired sectors: 20806 20901 20996
|
||||
Ecc progress: 2.1% 3 repaired sectors: 20807 20902 20997
|
||||
Ecc progress: 3.1% 3 repaired sectors: 20808 20903 20998
|
||||
Ecc progress: 4.2% 3 repaired sectors: 20809 20904 20999
|
||||
Ecc progress: 5.2% 2 repaired sectors: 20810 20905
|
||||
Ecc progress: 6.3% 2 repaired sectors: 20811 20906
|
||||
Ecc progress: 7.3% 2 repaired sectors: 20812 20907
|
||||
Ecc progress: 8.4% 2 repaired sectors: 20813 20908
|
||||
Ecc progress: 9.4% 2 repaired sectors: 20814 20909
|
||||
Ecc progress: 10.5% 2 repaired sectors: 20815 20910
|
||||
Ecc progress: 11.5% 2 repaired sectors: 20816 20911
|
||||
Ecc progress: 12.6% 2 repaired sectors: 20817 20912
|
||||
Ecc progress: 13.6% 2 repaired sectors: 20818 20913
|
||||
Ecc progress: 14.7% 2 repaired sectors: 20819 20914
|
||||
Ecc progress: 15.7% 2 repaired sectors: 20820 20915
|
||||
Ecc progress: 16.8% 2 repaired sectors: 20821 20916
|
||||
Ecc progress: 17.8% 2 repaired sectors: 20822 20917
|
||||
Ecc progress: 18.9% 2 repaired sectors: 20823 20918
|
||||
Ecc progress: 20.0% 2 repaired sectors: 20824 20919
|
||||
Ecc progress: 21.0% 2 repaired sectors: 20825 20920
|
||||
Ecc progress: 22.1% 3 repaired sectors: 20731 20826 20921
|
||||
Ecc progress: 23.1% 3 repaired sectors: 20732 20827 20922
|
||||
Ecc progress: 24.2% 3 repaired sectors: 20733 20828 20923
|
||||
Ecc progress: 25.2% 3 repaired sectors: 20734 20829 20924
|
||||
Ecc progress: 26.3% 3 repaired sectors: 20735 20830 20925
|
||||
Ecc progress: 27.3% 3 repaired sectors: 20736 20831 20926
|
||||
Ecc progress: 28.4% 3 repaired sectors: 20737 20832 20927
|
||||
Ecc progress: 29.4% 3 repaired sectors: 20738 20833 20928
|
||||
Ecc progress: 30.5% 3 repaired sectors: 20739 20834 20929
|
||||
Ecc progress: 31.5% 3 repaired sectors: 20740 20835 20930
|
||||
Ecc progress: 32.6% 3 repaired sectors: 20741 20836 20931
|
||||
Ecc progress: 33.6% 3 repaired sectors: 20742 20837 20932
|
||||
Ecc progress: 34.7% 3 repaired sectors: 20743 20838 20933
|
||||
Ecc progress: 35.7% 3 repaired sectors: 20744 20839 20934
|
||||
Ecc progress: 36.8% 3 repaired sectors: 20745 20840 20935
|
||||
Ecc progress: 37.8% 3 repaired sectors: 20746 20841 20936
|
||||
Ecc progress: 38.9% 3 repaired sectors: 20747 20842 20937
|
||||
Ecc progress: 40.0% 3 repaired sectors: 20748 20843 20938
|
||||
Ecc progress: 41.0% 3 repaired sectors: 20749 20844 20939
|
||||
Ecc progress: 42.1% 3 repaired sectors: 20750 20845 20940
|
||||
Ecc progress: 43.1% 3 repaired sectors: 20751 20846 20941
|
||||
Ecc progress: 44.2% 3 repaired sectors: 20752 20847 20942
|
||||
Ecc progress: 45.2% 3 repaired sectors: 20753 20848 20943
|
||||
Ecc progress: 46.3% 3 repaired sectors: 20754 20849 20944
|
||||
Ecc progress: 47.3% 3 repaired sectors: 20755 20850 20945
|
||||
Ecc progress: 48.4% 3 repaired sectors: 20756 20851 20946
|
||||
Ecc progress: 49.4% 3 repaired sectors: 20757 20852 20947
|
||||
Ecc progress: 50.5% 3 repaired sectors: 20758 20853 20948
|
||||
Ecc progress: 51.5% 3 repaired sectors: 20759 20854 20949
|
||||
Ecc progress: 52.6% 3 repaired sectors: 20760 20855 20950
|
||||
Ecc progress: 53.6% 3 repaired sectors: 20761 20856 20951
|
||||
Ecc progress: 54.7% 3 repaired sectors: 20762 20857 20952
|
||||
Ecc progress: 55.7% 3 repaired sectors: 20763 20858 20953
|
||||
Ecc progress: 56.8% 3 repaired sectors: 20764 20859 20954
|
||||
Ecc progress: 57.8% 3 repaired sectors: 20765 20860 20955
|
||||
Ecc progress: 58.9% 3 repaired sectors: 20766 20861 20956
|
||||
Ecc progress: 60.0% 3 repaired sectors: 20767 20862 20957
|
||||
Ecc progress: 61.0% 3 repaired sectors: 20768 20863 20958
|
||||
Ecc progress: 62.1% 3 repaired sectors: 20769 20864 20959
|
||||
Ecc progress: 63.1% 3 repaired sectors: 20770 20865 20960
|
||||
Ecc progress: 64.2% 3 repaired sectors: 20771 20866 20961
|
||||
Ecc progress: 65.2% 3 repaired sectors: 20772 20867 20962
|
||||
Ecc progress: 66.3% 3 repaired sectors: 20773 20868 20963
|
||||
Ecc progress: 67.3% 3 repaired sectors: 20774 20869 20964
|
||||
Ecc progress: 68.4% 3 repaired sectors: 20775 20870 20965
|
||||
Ecc progress: 69.4% 3 repaired sectors: 20776 20871 20966
|
||||
Ecc progress: 70.5% 3 repaired sectors: 20777 20872 20967
|
||||
Ecc progress: 71.5% 3 repaired sectors: 20778 20873 20968
|
||||
Ecc progress: 72.6% 3 repaired sectors: 20779 20874 20969
|
||||
Ecc progress: 73.6% 3 repaired sectors: 20780 20875 20970
|
||||
Ecc progress: 74.7% 3 repaired sectors: 20781 20876 20971
|
||||
Ecc progress: 75.7% 3 repaired sectors: 20782 20877 20972
|
||||
Ecc progress: 76.8% 3 repaired sectors: 20783 20878 20973
|
||||
Ecc progress: 77.8% 3 repaired sectors: 20784 20879 20974
|
||||
Ecc progress: 78.9% 3 repaired sectors: 20785 20880 20975
|
||||
Ecc progress: 80.0% 3 repaired sectors: 20786 20881 20976
|
||||
Ecc progress: 81.0% 3 repaired sectors: 20787 20882 20977
|
||||
Ecc progress: 82.1% 3 repaired sectors: 20788 20883 20978
|
||||
Ecc progress: 83.1% 3 repaired sectors: 20789 20884 20979
|
||||
Ecc progress: 84.2% 3 repaired sectors: 20790 20885 20980
|
||||
Ecc progress: 85.2% 3 repaired sectors: 20791 20886 20981
|
||||
Ecc progress: 86.3% 3 repaired sectors: 20792 20887 20982
|
||||
Ecc progress: 87.3% 3 repaired sectors: 20793 20888 20983
|
||||
Ecc progress: 88.4% 3 repaired sectors: 20794 20889 20984
|
||||
Ecc progress: 89.4% 3 repaired sectors: 20795 20890 20985
|
||||
Ecc progress: 90.5% 3 repaired sectors: 20796 20891 20986
|
||||
Ecc progress: 91.5% 3 repaired sectors: 20797 20892 20987
|
||||
Ecc progress: 92.6% 3 repaired sectors: 20798 20893 20988
|
||||
Ecc progress: 93.6% 3 repaired sectors: 20799 20894 20989
|
||||
Ecc progress: 94.7% 3 repaired sectors: 20800 20895 20990
|
||||
Ecc progress: 95.7% 3 repaired sectors: 20801 20896 20991
|
||||
Ecc progress: 96.8% 3 repaired sectors: 20802 20897 20992
|
||||
Ecc progress: 97.8% 3 repaired sectors: 20803 20898 20993
|
||||
Ecc progress: 98.9% 3 repaired sectors: 20804 20899 20994
|
||||
Ecc progress: 100.0%Ecc progress: 100.0%
|
||||
Repaired sectors: 269
|
||||
Good! All sectors are repaired.
|
||||
Erasure counts per ecc block: avg = 2.8; worst = 3.
|
||||
20
regtest/database/RS01_good
Normal file
20
regtest/database/RS01_good
Normal file
File diff suppressed because one or more lines are too long
16
regtest/database/RS01_good_quick
Normal file
16
regtest/database/RS01_good_quick
Normal file
@@ -0,0 +1,16 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
4be4dcc0f6b88965334ccf1050dfa5fa
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
rs01-master.iso: present, contains 21000 medium sectors.
|
||||
* quick mode : image NOT scanned
|
||||
|
||||
rs01-master.ecc: created by dvdisaster-0.80
|
||||
- method : RS01, 32 roots, 14.3% redundancy.
|
||||
- requires : dvdisaster-0.55 (good)
|
||||
- medium sectors : 21000 (good)
|
||||
- fingerprint match: good
|
||||
* quick mode : ecc file NOT scanned
|
||||
20
regtest/database/RS01_image_few_bytes_longer
Normal file
20
regtest/database/RS01_image_few_bytes_longer
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_image_few_bytes_shorter
Normal file
20
regtest/database/RS01_image_few_bytes_shorter
Normal file
File diff suppressed because one or more lines are too long
13
regtest/database/RS01_image_plus56_bytes
Normal file
13
regtest/database/RS01_image_plus56_bytes
Normal file
File diff suppressed because one or more lines are too long
19
regtest/database/RS01_image_plus56b_normal_ecc
Normal file
19
regtest/database/RS01_image_plus56b_normal_ecc
Normal file
File diff suppressed because one or more lines are too long
13
regtest/database/RS01_missing_ecc_header
Normal file
13
regtest/database/RS01_missing_ecc_header
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_missing_fingerprint
Normal file
20
regtest/database/RS01_missing_fingerprint
Normal file
File diff suppressed because one or more lines are too long
22
regtest/database/RS01_missing_sectors_with_ecc
Normal file
22
regtest/database/RS01_missing_sectors_with_ecc
Normal file
File diff suppressed because one or more lines are too long
13
regtest/database/RS01_no_ecc
Normal file
13
regtest/database/RS01_no_ecc
Normal file
File diff suppressed because one or more lines are too long
11
regtest/database/RS01_no_files
Normal file
11
regtest/database/RS01_no_files
Normal file
@@ -0,0 +1,11 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
no.iso: not present
|
||||
|
||||
no.ecc: not present
|
||||
|
||||
17
regtest/database/RS01_no_image
Normal file
17
regtest/database/RS01_no_image
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_normal_image_ecc_plus56b
Normal file
20
regtest/database/RS01_normal_image_ecc_plus56b
Normal file
File diff suppressed because one or more lines are too long
19
regtest/database/RS01_plus1
Normal file
19
regtest/database/RS01_plus1
Normal file
File diff suppressed because one or more lines are too long
19
regtest/database/RS01_plus17
Normal file
19
regtest/database/RS01_plus17
Normal file
File diff suppressed because one or more lines are too long
20
regtest/database/RS01_plus56_bytes
Normal file
20
regtest/database/RS01_plus56_bytes
Normal file
File diff suppressed because one or more lines are too long
19
regtest/database/RS01_read_crc_errors_with_ecc
Normal file
19
regtest/database/RS01_read_crc_errors_with_ecc
Normal file
File diff suppressed because one or more lines are too long
46
regtest/database/RS01_read_defective_large_skip
Normal file
46
regtest/database/RS01_read_defective_large_skip
Normal file
File diff suppressed because one or more lines are too long
32
regtest/database/RS01_read_defective_no_ecc
Normal file
32
regtest/database/RS01_read_defective_no_ecc
Normal file
File diff suppressed because one or more lines are too long
229
regtest/database/RS01_read_defective_no_ecc_again
Normal file
229
regtest/database/RS01_read_defective_no_ecc_again
Normal file
@@ -0,0 +1,229 @@
|
||||
baa79b281437ebb80e606247f8a0e9da
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
Sectors 96 - 111: Medium Error; Unrecovered read error.
|
||||
Sector 100, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 100: Medium Error; Unrecovered read error.
|
||||
Sector 101, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 101: Medium Error; Unrecovered read error.
|
||||
Sector 102, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 102: Medium Error; Unrecovered read error.
|
||||
Sector 103, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 103: Medium Error; Unrecovered read error.
|
||||
Sector 104, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 104: Medium Error; Unrecovered read error.
|
||||
Sector 105, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 105: Medium Error; Unrecovered read error.
|
||||
Sector 106, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 106: Medium Error; Unrecovered read error.
|
||||
Sector 107, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 107: Medium Error; Unrecovered read error.
|
||||
Sector 108, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 108: Medium Error; Unrecovered read error.
|
||||
Sector 109, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 109: Medium Error; Unrecovered read error.
|
||||
Sector 110, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 110: Medium Error; Unrecovered read error.
|
||||
Sector 111, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 111: Medium Error; Unrecovered read error.
|
||||
Sectors 112 - 127: Medium Error; Unrecovered read error.
|
||||
Sector 112, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 112: Medium Error; Unrecovered read error.
|
||||
Sector 113, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 113: Medium Error; Unrecovered read error.
|
||||
Sector 114, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 114: Medium Error; Unrecovered read error.
|
||||
Sector 115, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 115: Medium Error; Unrecovered read error.
|
||||
Sector 116, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 116: Medium Error; Unrecovered read error.
|
||||
Sector 117, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 117: Medium Error; Unrecovered read error.
|
||||
Sector 118, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 118: Medium Error; Unrecovered read error.
|
||||
Sector 119, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 119: Medium Error; Unrecovered read error.
|
||||
Sector 120, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 120: Medium Error; Unrecovered read error.
|
||||
Sector 121, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 121: Medium Error; Unrecovered read error.
|
||||
Sector 122, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 122: Medium Error; Unrecovered read error.
|
||||
Sector 123, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 123: Medium Error; Unrecovered read error.
|
||||
Sector 124, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 124: Medium Error; Unrecovered read error.
|
||||
Sector 125, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 125: Medium Error; Unrecovered read error.
|
||||
Sector 126, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 126: Medium Error; Unrecovered read error.
|
||||
Sector 127, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 127: Medium Error; Unrecovered read error.
|
||||
Sectors 128 - 143: Medium Error; Unrecovered read error.
|
||||
Sector 128, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 128: Medium Error; Unrecovered read error.
|
||||
Sector 129, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 129: Medium Error; Unrecovered read error.
|
||||
Sector 130, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 130: Medium Error; Unrecovered read error.
|
||||
Sector 131, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 131: Medium Error; Unrecovered read error.
|
||||
Sector 132, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 132: Medium Error; Unrecovered read error.
|
||||
Sector 133, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 133: Medium Error; Unrecovered read error.
|
||||
Sector 134, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 134: Medium Error; Unrecovered read error.
|
||||
Sector 135, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 135: Medium Error; Unrecovered read error.
|
||||
Sector 136, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 136: Medium Error; Unrecovered read error.
|
||||
Sector 137, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 137: Medium Error; Unrecovered read error.
|
||||
Sector 138, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 138: Medium Error; Unrecovered read error.
|
||||
Sector 139, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 139: Medium Error; Unrecovered read error.
|
||||
Sector 140, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 140: Medium Error; Unrecovered read error.
|
||||
Sector 141, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 141: Medium Error; Unrecovered read error.
|
||||
Sector 142, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 142: Medium Error; Unrecovered read error.
|
||||
Sector 143, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 143: Medium Error; Unrecovered read error.
|
||||
Sectors 144 - 159: Medium Error; Unrecovered read error.
|
||||
Sector 144, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 144: Medium Error; Unrecovered read error.
|
||||
Sector 145, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 145: Medium Error; Unrecovered read error.
|
||||
Sector 146, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 146: Medium Error; Unrecovered read error.
|
||||
Sector 147, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 147: Medium Error; Unrecovered read error.
|
||||
Sector 148, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 148: Medium Error; Unrecovered read error.
|
||||
Sector 149, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 149: Medium Error; Unrecovered read error.
|
||||
Sector 150, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 150: Medium Error; Unrecovered read error.
|
||||
Sector 151, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 151: Medium Error; Unrecovered read error.
|
||||
Sector 152, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 152: Medium Error; Unrecovered read error.
|
||||
Sector 153, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 153: Medium Error; Unrecovered read error.
|
||||
Sector 154, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 154: Medium Error; Unrecovered read error.
|
||||
Sector 155, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 155: Medium Error; Unrecovered read error.
|
||||
Sector 156, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 156: Medium Error; Unrecovered read error.
|
||||
Sector 157, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 157: Medium Error; Unrecovered read error.
|
||||
Sector 158, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 158: Medium Error; Unrecovered read error.
|
||||
Sector 159, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 159: Medium Error; Unrecovered read error.
|
||||
Sectors 160 - 175: Medium Error; Unrecovered read error.
|
||||
Sector 160, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 160: Medium Error; Unrecovered read error.
|
||||
Sector 161, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 161: Medium Error; Unrecovered read error.
|
||||
Sector 162, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 162: Medium Error; Unrecovered read error.
|
||||
Sector 163, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 163: Medium Error; Unrecovered read error.
|
||||
Sector 164, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 164: Medium Error; Unrecovered read error.
|
||||
Sector 165, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 165: Medium Error; Unrecovered read error.
|
||||
Sector 166, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 166: Medium Error; Unrecovered read error.
|
||||
Sector 167, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 167: Medium Error; Unrecovered read error.
|
||||
Sector 168, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 168: Medium Error; Unrecovered read error.
|
||||
Sector 169, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 169: Medium Error; Unrecovered read error.
|
||||
Sector 170, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 170: Medium Error; Unrecovered read error.
|
||||
Sector 171, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 171: Medium Error; Unrecovered read error.
|
||||
Sector 172, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 172: Medium Error; Unrecovered read error.
|
||||
Sector 173, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 173: Medium Error; Unrecovered read error.
|
||||
Sector 174, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 174: Medium Error; Unrecovered read error.
|
||||
Sector 175, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 175: Medium Error; Unrecovered read error.
|
||||
Sectors 176 - 191: Medium Error; Unrecovered read error.
|
||||
Sector 176, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 176: Medium Error; Unrecovered read error.
|
||||
Sector 177, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 177: Medium Error; Unrecovered read error.
|
||||
Sector 178, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 178: Medium Error; Unrecovered read error.
|
||||
Sector 179, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 179: Medium Error; Unrecovered read error.
|
||||
Sector 180, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 180: Medium Error; Unrecovered read error.
|
||||
Sector 181, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 181: Medium Error; Unrecovered read error.
|
||||
Sector 182, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 182: Medium Error; Unrecovered read error.
|
||||
Sector 183, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 183: Medium Error; Unrecovered read error.
|
||||
Sector 184, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 184: Medium Error; Unrecovered read error.
|
||||
Sector 185, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 185: Medium Error; Unrecovered read error.
|
||||
Sector 186, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 186: Medium Error; Unrecovered read error.
|
||||
Sector 187, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 187: Medium Error; Unrecovered read error.
|
||||
Sector 188, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 188: Medium Error; Unrecovered read error.
|
||||
Sector 189, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 189: Medium Error; Unrecovered read error.
|
||||
Sector 190, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 190: Medium Error; Unrecovered read error.
|
||||
Sector 191, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 191: Medium Error; Unrecovered read error.
|
||||
Sectors 192 - 207: Medium Error; Unrecovered read error.
|
||||
Sector 192, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 192: Medium Error; Unrecovered read error.
|
||||
Sector 193, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 193: Medium Error; Unrecovered read error.
|
||||
Sector 194, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 194: Medium Error; Unrecovered read error.
|
||||
Sector 195, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 195: Medium Error; Unrecovered read error.
|
||||
Sector 196, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 196: Medium Error; Unrecovered read error.
|
||||
Sector 197, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 197: Medium Error; Unrecovered read error.
|
||||
Sector 198, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 198: Medium Error; Unrecovered read error.
|
||||
Sector 199, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 199: Medium Error; Unrecovered read error.
|
||||
Sector 200, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 200: Medium Error; Unrecovered read error.
|
||||
Read position: 1.0% (nn.nx)Sectors 752 - 767: Medium Error; Unrecovered read error.
|
||||
Read position: 3.6% (nn.nx)Sector 766, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 766: Medium Error; Unrecovered read error.
|
||||
Read position: 3.7% (nn.nx)Sectors 2400 - 2415: Medium Error; Unrecovered read error.
|
||||
Sector 2410, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 2410: Medium Error; Unrecovered read error.
|
||||
Read position: 11.5% (nn.nx)Read position: 11.6% (nn.nx)
|
||||
41 sectors read; 103 unreadable sectors.
|
||||
15
regtest/database/RS01_read_longer_with_ecc
Normal file
15
regtest/database/RS01_read_longer_with_ecc
Normal file
File diff suppressed because one or more lines are too long
27
regtest/database/RS01_read_medium_with_dsm
Normal file
27
regtest/database/RS01_read_medium_with_dsm
Normal file
File diff suppressed because one or more lines are too long
33
regtest/database/RS01_read_medium_with_dsm_in_image
Normal file
33
regtest/database/RS01_read_medium_with_dsm_in_image
Normal file
@@ -0,0 +1,33 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and annotated to be
|
||||
* in a different location (3130).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* ... more unrecoverable sectors found ...
|
||||
* further messages are suppressed unless the -v option is given.
|
||||
Read position: 21.0% (nn.nx)Read position: 21.1% (nn.nx)
|
||||
3 sectors read.
|
||||
33
regtest/database/RS01_read_medium_with_dsm_in_image2
Normal file
33
regtest/database/RS01_read_medium_with_dsm_in_image2
Normal file
@@ -0,0 +1,33 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image 2
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* ... more unrecoverable sectors found ...
|
||||
* further messages are suppressed unless the -v option is given.
|
||||
Read position: 21.0% (nn.nx)Read position: 21.1% (nn.nx)
|
||||
3 sectors read.
|
||||
206
regtest/database/RS01_read_medium_with_dsm_in_image2_verbose
Normal file
206
regtest/database/RS01_read_medium_with_dsm_in_image2_verbose
Normal file
@@ -0,0 +1,206 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
# *** OpenImageFromDevice(sim-cd) ***
|
||||
# InquireDevice returned: Simulated CD drive 1.00
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
# *** query_type(Simulated CD drive 1.00, 0) ***
|
||||
# *** get_configuration(Simulated CD drive 1.00) ***
|
||||
# 8 data len, 9 current
|
||||
-> profile 9: CD-R
|
||||
# trying READ DISC INFORMATION for size
|
||||
# size returned is 32
|
||||
# trying READ DISC INFORMATION for real info
|
||||
0000: 00 20 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 . ...... ........
|
||||
0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........
|
||||
# status is 1e, disc type 0
|
||||
#CD: starting media probe
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for TOC)
|
||||
#CD: size returned is 12
|
||||
#CD: querying real READ TOC/PMA/ATIP (for TOC)
|
||||
0000: 00 0a 00 00 00 14 00 00 00 00 00 00 ........ ....
|
||||
#CD: control is 0x14
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for full TOC)
|
||||
# Warning: Realigning length from 26 to 24
|
||||
#CD: size returned is 24
|
||||
#CD: querying real READ TOC/PMA/ATIP (for full TOC)
|
||||
0000: 00 18 00 01 00 00 00 a0 00 00 00 00 00 00 00 00 ........ ........
|
||||
0010: 00 00 00 00 00 00 00 00 ........
|
||||
#CD: 1 sessions
|
||||
#CD: CD medium detected, type: CD-R mode 1
|
||||
# query_type() returned.
|
||||
# deciding reading strategy...
|
||||
Using READ CD.
|
||||
GetImageFingerprint(16): read & cached
|
||||
|
||||
ExamineUDF(Device: Simulated CD drive 1.00)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 21000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
# *** read_capacity(Simulated CD drive 1.00) ***
|
||||
-> 20999
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: medium sim-cd
|
||||
try_sector: trying sector 21000
|
||||
try_sector: read error, trying next header
|
||||
try_sector: trying sector 20850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: skipping exhaustive RS02 search
|
||||
...trying RS03
|
||||
RS03RecognizeImage: medium sim-cd
|
||||
FindRS03HeaderInImage: medium sim-cd
|
||||
RS03RecognizeImage: skipping exhaustive RS03 search
|
||||
...no augmented image detected.
|
||||
# Calling query_size()
|
||||
# *** query_size(Simulated CD drive 1.00) ***
|
||||
Medium size could NOT be determined from ECC header.
|
||||
Medium size obtained from ISO/UDF file system: 21000 sectors
|
||||
# returned: 21000 sectors
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
GetImageFingerprint(16): cached
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image 2
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image 2
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4400 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4411 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4400 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
Read position: 21.0% (nn.nx)* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4411 is marked unreadable and seems to come
|
||||
* from a different medium.
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
Read position: 21.1% (nn.nx)CRC NOT created.
|
||||
|
||||
3 sectors read.
|
||||
206
regtest/database/RS01_read_medium_with_dsm_in_image_verbose
Normal file
206
regtest/database/RS01_read_medium_with_dsm_in_image_verbose
Normal file
@@ -0,0 +1,206 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
# *** OpenImageFromDevice(sim-cd) ***
|
||||
# InquireDevice returned: Simulated CD drive 1.00
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
# *** query_type(Simulated CD drive 1.00, 0) ***
|
||||
# *** get_configuration(Simulated CD drive 1.00) ***
|
||||
# 8 data len, 9 current
|
||||
-> profile 9: CD-R
|
||||
# trying READ DISC INFORMATION for size
|
||||
# size returned is 32
|
||||
# trying READ DISC INFORMATION for real info
|
||||
0000: 00 20 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 . ...... ........
|
||||
0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........
|
||||
# status is 1e, disc type 0
|
||||
#CD: starting media probe
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for TOC)
|
||||
#CD: size returned is 12
|
||||
#CD: querying real READ TOC/PMA/ATIP (for TOC)
|
||||
0000: 00 0a 00 00 00 14 00 00 00 00 00 00 ........ ....
|
||||
#CD: control is 0x14
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for full TOC)
|
||||
# Warning: Realigning length from 26 to 24
|
||||
#CD: size returned is 24
|
||||
#CD: querying real READ TOC/PMA/ATIP (for full TOC)
|
||||
0000: 00 18 00 01 00 00 00 a0 00 00 00 00 00 00 00 00 ........ ........
|
||||
0010: 00 00 00 00 00 00 00 00 ........
|
||||
#CD: 1 sessions
|
||||
#CD: CD medium detected, type: CD-R mode 1
|
||||
# query_type() returned.
|
||||
# deciding reading strategy...
|
||||
Using READ CD.
|
||||
GetImageFingerprint(16): read & cached
|
||||
|
||||
ExamineUDF(Device: Simulated CD drive 1.00)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 21000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
# *** read_capacity(Simulated CD drive 1.00) ***
|
||||
-> 20999
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: medium sim-cd
|
||||
try_sector: trying sector 21000
|
||||
try_sector: read error, trying next header
|
||||
try_sector: trying sector 20850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: skipping exhaustive RS02 search
|
||||
...trying RS03
|
||||
RS03RecognizeImage: medium sim-cd
|
||||
FindRS03HeaderInImage: medium sim-cd
|
||||
RS03RecognizeImage: skipping exhaustive RS03 search
|
||||
...no augmented image detected.
|
||||
# Calling query_size()
|
||||
# *** query_size(Simulated CD drive 1.00) ***
|
||||
Medium size could NOT be determined from ECC header.
|
||||
Medium size obtained from ISO/UDF file system: 21000 sectors
|
||||
# returned: 21000 sectors
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
GetImageFingerprint(16): cached
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and annotated to be
|
||||
* in a different location (3130).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 3030 is marked unreadable and annotated to be
|
||||
* in a different location (3130).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4400 is marked unreadable and annotated to be
|
||||
* in a different location (4500).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4411 is marked unreadable and annotated to be
|
||||
* in a different location (4511).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4400 is marked unreadable and annotated to be
|
||||
* in a different location (4500).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
Read position: 21.0% (nn.nx)* Unrecoverable sector found!
|
||||
*
|
||||
* Sector 4411 is marked unreadable and annotated to be
|
||||
* in a different location (4511).
|
||||
*
|
||||
* The image was probably mastered from defective content.
|
||||
* For example it might contain one or more files which came
|
||||
* from a damaged medium which was NOT fully recovered.
|
||||
* This means that some files may have been silently corrupted.
|
||||
*
|
||||
* The label of the original (defective) medium was:
|
||||
*
|
||||
* Random Image
|
||||
*
|
||||
* Since the image was already created defective it can not be
|
||||
* repaired by dvdisaster. Also it will not be possible to create
|
||||
* error correction data for it. Sorry for the bad news.
|
||||
Read position: 21.1% (nn.nx)CRC NOT created.
|
||||
|
||||
3 sectors read.
|
||||
136
regtest/database/RS01_read_medium_with_dsm_verbose
Normal file
136
regtest/database/RS01_read_medium_with_dsm_verbose
Normal file
File diff suppressed because one or more lines are too long
37
regtest/database/RS01_read_more_missing_at_end_with_ecc
Normal file
37
regtest/database/RS01_read_more_missing_at_end_with_ecc
Normal file
File diff suppressed because one or more lines are too long
771
regtest/database/RS01_read_multipass_no_ecc_again
Normal file
771
regtest/database/RS01_read_multipass_no_ecc_again
Normal file
@@ -0,0 +1,771 @@
|
||||
e0bf15fbfb10d2948e5fb4baff590b7b
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
Completing image rs01-tmp.iso. Only missing sectors will be read.
|
||||
Sectors 2992 - 3007: Medium Error; Unrecovered read error.
|
||||
Sector 3000, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3000: Medium Error; Unrecovered read error.
|
||||
Sector 3001, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3001: Medium Error; Unrecovered read error.
|
||||
Sector 3002, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3002: Medium Error; Unrecovered read error.
|
||||
Read position: 14.3% (nn.nx)Sector 3003, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3003: Medium Error; Unrecovered read error.
|
||||
Sector 3004, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3004: Medium Error; Unrecovered read error.
|
||||
Sector 3005, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3005: Medium Error; Unrecovered read error.
|
||||
Sector 3006, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3006: Medium Error; Unrecovered read error.
|
||||
Sector 3007, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3007: Medium Error; Unrecovered read error.
|
||||
Sectors 3008 - 3023: Medium Error; Unrecovered read error.
|
||||
Sector 3008, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3008: Medium Error; Unrecovered read error.
|
||||
Sector 3009, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3009: Medium Error; Unrecovered read error.
|
||||
Sector 3010, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3010: Medium Error; Unrecovered read error.
|
||||
Sector 3011, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3011: Medium Error; Unrecovered read error.
|
||||
Sector 3012, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3012: Medium Error; Unrecovered read error.
|
||||
Sector 3013, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3013: Medium Error; Unrecovered read error.
|
||||
Sector 3014, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3014: Medium Error; Unrecovered read error.
|
||||
Sector 3015, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3015: Medium Error; Unrecovered read error.
|
||||
Sector 3016, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3016: Medium Error; Unrecovered read error.
|
||||
Sector 3017, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3017: Medium Error; Unrecovered read error.
|
||||
Sector 3018, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3018: Medium Error; Unrecovered read error.
|
||||
Sector 3019, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3019: Medium Error; Unrecovered read error.
|
||||
Sector 3020, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3020: Medium Error; Unrecovered read error.
|
||||
Sector 3021, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3021: Medium Error; Unrecovered read error.
|
||||
Sector 3022, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3022: Medium Error; Unrecovered read error.
|
||||
Sector 3023, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3023: Medium Error; Unrecovered read error.
|
||||
Sectors 3024 - 3039: Medium Error; Unrecovered read error.
|
||||
Sector 3024, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3024: Medium Error; Unrecovered read error.
|
||||
Sector 3025, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3025: Medium Error; Unrecovered read error.
|
||||
Sector 3026, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3026: Medium Error; Unrecovered read error.
|
||||
Sector 3027, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3027: Medium Error; Unrecovered read error.
|
||||
Sector 3028, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3028: Medium Error; Unrecovered read error.
|
||||
Sector 3029, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3029: Medium Error; Unrecovered read error.
|
||||
Sector 3030, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3030: Medium Error; Unrecovered read error.
|
||||
Sector 3031, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3031: Medium Error; Unrecovered read error.
|
||||
Sector 3032, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3032: Medium Error; Unrecovered read error.
|
||||
Sector 3033, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3033: Medium Error; Unrecovered read error.
|
||||
Sector 3034, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3034: Medium Error; Unrecovered read error.
|
||||
Sector 3035, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3035: Medium Error; Unrecovered read error.
|
||||
Sector 3036, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3036: Medium Error; Unrecovered read error.
|
||||
Sector 3037, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3037: Medium Error; Unrecovered read error.
|
||||
Sector 3038, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3038: Medium Error; Unrecovered read error.
|
||||
Sector 3039, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3039: Medium Error; Unrecovered read error.
|
||||
Sectors 3040 - 3055: Medium Error; Unrecovered read error.
|
||||
Sector 3040, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3040: Medium Error; Unrecovered read error.
|
||||
Sector 3041, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3041: Medium Error; Unrecovered read error.
|
||||
Sector 3042, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3042: Medium Error; Unrecovered read error.
|
||||
Sector 3043, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3043: Medium Error; Unrecovered read error.
|
||||
Sector 3044, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3044: Medium Error; Unrecovered read error.
|
||||
Sector 3045, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3045: Medium Error; Unrecovered read error.
|
||||
Read position: 14.6% (nn.nx)Read position: 14.7% (nn.nx)Read position: 14.8% (nn.nx)Read position: 14.9% (nn.nx)Read position: 97.4% (nn.nx)Read position: 97.5% (nn.nx)Read position: 97.6% (nn.nx)Read position: 97.7% (nn.nx)Read position: 97.8% (nn.nx)Read position: 97.9% (nn.nx)Read position: 98.0% (nn.nx)Read position: 98.1% (nn.nx)Read position: 98.2% (nn.nx)Read position: 98.3% (nn.nx)Read position: 98.4% (nn.nx)Read position: 98.5% (nn.nx)Read position: 98.6% (nn.nx)Read position: 98.7% (nn.nx)Read position: 98.8% (nn.nx)Read position: 98.9% (nn.nx)Read position: 99.0% (nn.nx)Sectors 20800 - 20815: Medium Error; Unrecovered read error.
|
||||
Sector 20800, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20800: Medium Error; Unrecovered read error.
|
||||
Sector 20801, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20801: Medium Error; Unrecovered read error.
|
||||
Sector 20802, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20802: Medium Error; Unrecovered read error.
|
||||
Sector 20803, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20803: Medium Error; Unrecovered read error.
|
||||
Sector 20804, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20804: Medium Error; Unrecovered read error.
|
||||
Sector 20805, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20805: Medium Error; Unrecovered read error.
|
||||
Sector 20806, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20806: Medium Error; Unrecovered read error.
|
||||
Sector 20807, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20807: Medium Error; Unrecovered read error.
|
||||
Sector 20808, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20808: Medium Error; Unrecovered read error.
|
||||
Sector 20809, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20809: Medium Error; Unrecovered read error.
|
||||
Sector 20810, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20810: Medium Error; Unrecovered read error.
|
||||
Sector 20811, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20811: Medium Error; Unrecovered read error.
|
||||
Sector 20812, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20812: Medium Error; Unrecovered read error.
|
||||
Sector 20813, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20813: Medium Error; Unrecovered read error.
|
||||
Sector 20814, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20814: Medium Error; Unrecovered read error.
|
||||
Sector 20815, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20815: Medium Error; Unrecovered read error.
|
||||
Sectors 20816 - 20831: Medium Error; Unrecovered read error.
|
||||
Sector 20816, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20816: Medium Error; Unrecovered read error.
|
||||
Sector 20817, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20817: Medium Error; Unrecovered read error.
|
||||
Sector 20818, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20818: Medium Error; Unrecovered read error.
|
||||
Sector 20819, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20819: Medium Error; Unrecovered read error.
|
||||
Sector 20820, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20820: Medium Error; Unrecovered read error.
|
||||
Sector 20821, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20821: Medium Error; Unrecovered read error.
|
||||
Sector 20822, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20822: Medium Error; Unrecovered read error.
|
||||
Sector 20823, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20823: Medium Error; Unrecovered read error.
|
||||
Sector 20824, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20824: Medium Error; Unrecovered read error.
|
||||
Sector 20825, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20825: Medium Error; Unrecovered read error.
|
||||
Sector 20826, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20826: Medium Error; Unrecovered read error.
|
||||
Sector 20827, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20827: Medium Error; Unrecovered read error.
|
||||
Sector 20828, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20828: Medium Error; Unrecovered read error.
|
||||
Sector 20829, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20829: Medium Error; Unrecovered read error.
|
||||
Sector 20830, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20830: Medium Error; Unrecovered read error.
|
||||
Sector 20831, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20831: Medium Error; Unrecovered read error.
|
||||
Sectors 20832 - 20847: Medium Error; Unrecovered read error.
|
||||
Sector 20832, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20832: Medium Error; Unrecovered read error.
|
||||
Sector 20833, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20833: Medium Error; Unrecovered read error.
|
||||
Sector 20834, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20834: Medium Error; Unrecovered read error.
|
||||
Sector 20835, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20835: Medium Error; Unrecovered read error.
|
||||
Sector 20836, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20836: Medium Error; Unrecovered read error.
|
||||
Sector 20837, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20837: Medium Error; Unrecovered read error.
|
||||
Sector 20838, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20838: Medium Error; Unrecovered read error.
|
||||
Sector 20839, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20839: Medium Error; Unrecovered read error.
|
||||
Sector 20840, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20840: Medium Error; Unrecovered read error.
|
||||
Sector 20841, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20841: Medium Error; Unrecovered read error.
|
||||
Sector 20842, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20842: Medium Error; Unrecovered read error.
|
||||
Sector 20843, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20843: Medium Error; Unrecovered read error.
|
||||
Sector 20844, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20844: Medium Error; Unrecovered read error.
|
||||
Sector 20845, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20845: Medium Error; Unrecovered read error.
|
||||
Sector 20846, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20846: Medium Error; Unrecovered read error.
|
||||
Sector 20847, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20847: Medium Error; Unrecovered read error.
|
||||
Sectors 20848 - 20863: Medium Error; Unrecovered read error.
|
||||
Sector 20848, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20848: Medium Error; Unrecovered read error.
|
||||
Sector 20849, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20849: Medium Error; Unrecovered read error.
|
||||
Sector 20850, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20850: Medium Error; Unrecovered read error.
|
||||
Sector 20851, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20851: Medium Error; Unrecovered read error.
|
||||
Sector 20852, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20852: Medium Error; Unrecovered read error.
|
||||
Sector 20853, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20853: Medium Error; Unrecovered read error.
|
||||
Sector 20854, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20854: Medium Error; Unrecovered read error.
|
||||
Sector 20855, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20855: Medium Error; Unrecovered read error.
|
||||
Sector 20856, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20856: Medium Error; Unrecovered read error.
|
||||
Sector 20857, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20857: Medium Error; Unrecovered read error.
|
||||
Sector 20858, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20858: Medium Error; Unrecovered read error.
|
||||
Sector 20859, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20859: Medium Error; Unrecovered read error.
|
||||
Sector 20860, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20860: Medium Error; Unrecovered read error.
|
||||
Sector 20861, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20861: Medium Error; Unrecovered read error.
|
||||
Sector 20862, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20862: Medium Error; Unrecovered read error.
|
||||
Sector 20863, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20863: Medium Error; Unrecovered read error.
|
||||
Sectors 20864 - 20879: Medium Error; Unrecovered read error.
|
||||
Sector 20864, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20864: Medium Error; Unrecovered read error.
|
||||
Sector 20865, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20865: Medium Error; Unrecovered read error.
|
||||
Sector 20866, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20866: Medium Error; Unrecovered read error.
|
||||
Sector 20867, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20867: Medium Error; Unrecovered read error.
|
||||
Sector 20868, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20868: Medium Error; Unrecovered read error.
|
||||
Sector 20869, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20869: Medium Error; Unrecovered read error.
|
||||
Sector 20870, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20870: Medium Error; Unrecovered read error.
|
||||
Sector 20871, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20871: Medium Error; Unrecovered read error.
|
||||
Sector 20872, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20872: Medium Error; Unrecovered read error.
|
||||
Sector 20873, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20873: Medium Error; Unrecovered read error.
|
||||
Sector 20874, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20874: Medium Error; Unrecovered read error.
|
||||
Sector 20875, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20875: Medium Error; Unrecovered read error.
|
||||
Read position: 99.5% (nn.nx)Read position: 99.6% (nn.nx)Read position: 99.7% (nn.nx)Read position: 99.8% (nn.nx)Read position: 99.9% (nn.nx)Read position: 100.0% (nn.nx)
|
||||
Trying to complete image, reading pass 2 of 3.
|
||||
Sector 3000, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3000: Medium Error; Unrecovered read error.
|
||||
Sector 3001, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3001: Medium Error; Unrecovered read error.
|
||||
Sector 3002, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3002: Medium Error; Unrecovered read error.
|
||||
Sector 3003, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3003: Medium Error; Unrecovered read error.
|
||||
Sector 3004, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3004: Medium Error; Unrecovered read error.
|
||||
Sector 3005, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3005: Medium Error; Unrecovered read error.
|
||||
Sector 3006, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3006: Medium Error; Unrecovered read error.
|
||||
Sector 3007, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3007: Medium Error; Unrecovered read error.
|
||||
Sectors 3008 - 3023: Medium Error; Unrecovered read error.
|
||||
Sector 3008, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3008: Medium Error; Unrecovered read error.
|
||||
Sector 3009, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3009: Medium Error; Unrecovered read error.
|
||||
Sector 3010, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3010: Medium Error; Unrecovered read error.
|
||||
Sector 3011, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3011: Medium Error; Unrecovered read error.
|
||||
Sector 3012, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3012: Medium Error; Unrecovered read error.
|
||||
Sector 3013, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3013: Medium Error; Unrecovered read error.
|
||||
Sector 3014, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3014: Medium Error; Unrecovered read error.
|
||||
Sector 3015, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3015: Medium Error; Unrecovered read error.
|
||||
Sector 3016, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3016: Medium Error; Unrecovered read error.
|
||||
Sector 3017, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3017: Medium Error; Unrecovered read error.
|
||||
Sector 3018, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3018: Medium Error; Unrecovered read error.
|
||||
Sector 3019, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3019: Medium Error; Unrecovered read error.
|
||||
Sector 3020, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3020: Medium Error; Unrecovered read error.
|
||||
Sector 3021, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3021: Medium Error; Unrecovered read error.
|
||||
Sector 3022, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3022: Medium Error; Unrecovered read error.
|
||||
Sector 3023, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3023: Medium Error; Unrecovered read error.
|
||||
Sectors 3024 - 3039: Medium Error; Unrecovered read error.
|
||||
Sector 3024, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3024: Medium Error; Unrecovered read error.
|
||||
Sector 3025, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3025: Medium Error; Unrecovered read error.
|
||||
Sector 3026, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3026: Medium Error; Unrecovered read error.
|
||||
Sector 3027, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3027: Medium Error; Unrecovered read error.
|
||||
Sector 3028, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3028: Medium Error; Unrecovered read error.
|
||||
Sector 3029, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3029: Medium Error; Unrecovered read error.
|
||||
Sector 3030, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3030: Medium Error; Unrecovered read error.
|
||||
Sector 3031, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3031: Medium Error; Unrecovered read error.
|
||||
Sector 3032, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3032: Medium Error; Unrecovered read error.
|
||||
Sector 3033, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3033: Medium Error; Unrecovered read error.
|
||||
Sector 3034, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3034: Medium Error; Unrecovered read error.
|
||||
Sector 3035, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3035: Medium Error; Unrecovered read error.
|
||||
Sector 3036, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3036: Medium Error; Unrecovered read error.
|
||||
Sector 3037, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3037: Medium Error; Unrecovered read error.
|
||||
Sector 3038, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3038: Medium Error; Unrecovered read error.
|
||||
Sector 3039, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3039: Medium Error; Unrecovered read error.
|
||||
Sector 3040, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3040: Medium Error; Unrecovered read error.
|
||||
Sector 3041, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3041: Medium Error; Unrecovered read error.
|
||||
Sector 3042, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3042: Medium Error; Unrecovered read error.
|
||||
Sector 3043, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3043: Medium Error; Unrecovered read error.
|
||||
Sector 3044, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3044: Medium Error; Unrecovered read error.
|
||||
Sector 3045, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3045: Medium Error; Unrecovered read error.
|
||||
Sectors 20800 - 20815: Medium Error; Unrecovered read error.
|
||||
Sector 20800, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20800: Medium Error; Unrecovered read error.
|
||||
Sector 20801, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20801: Medium Error; Unrecovered read error.
|
||||
Sector 20802, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20802: Medium Error; Unrecovered read error.
|
||||
Sector 20803, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20803: Medium Error; Unrecovered read error.
|
||||
Sector 20804, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20804: Medium Error; Unrecovered read error.
|
||||
Sector 20805, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20805: Medium Error; Unrecovered read error.
|
||||
Sector 20806, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20806: Medium Error; Unrecovered read error.
|
||||
Sector 20807, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20807: Medium Error; Unrecovered read error.
|
||||
Sector 20808, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20808: Medium Error; Unrecovered read error.
|
||||
Sector 20809, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20809: Medium Error; Unrecovered read error.
|
||||
Sector 20810, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20810: Medium Error; Unrecovered read error.
|
||||
Sector 20811, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20811: Medium Error; Unrecovered read error.
|
||||
Sector 20812, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20812: Medium Error; Unrecovered read error.
|
||||
Sector 20813, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20813: Medium Error; Unrecovered read error.
|
||||
Sector 20814, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20814: Medium Error; Unrecovered read error.
|
||||
Sector 20815, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20815: Medium Error; Unrecovered read error.
|
||||
Sectors 20816 - 20831: Medium Error; Unrecovered read error.
|
||||
Sector 20816, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20816: Medium Error; Unrecovered read error.
|
||||
Sector 20817, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20817: Medium Error; Unrecovered read error.
|
||||
Sector 20818, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20818: Medium Error; Unrecovered read error.
|
||||
Sector 20819, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20819: Medium Error; Unrecovered read error.
|
||||
Sector 20820, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20820: Medium Error; Unrecovered read error.
|
||||
Sector 20821, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20821: Medium Error; Unrecovered read error.
|
||||
Sector 20822, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20822: Medium Error; Unrecovered read error.
|
||||
Sector 20823, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20823: Medium Error; Unrecovered read error.
|
||||
Sector 20824, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20824: Medium Error; Unrecovered read error.
|
||||
Sector 20825, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20825: Medium Error; Unrecovered read error.
|
||||
Sector 20826, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20826: Medium Error; Unrecovered read error.
|
||||
Sector 20827, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20827: Medium Error; Unrecovered read error.
|
||||
Sector 20828, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20828: Medium Error; Unrecovered read error.
|
||||
Sector 20829, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20829: Medium Error; Unrecovered read error.
|
||||
Sector 20830, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20830: Medium Error; Unrecovered read error.
|
||||
Sector 20831, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20831: Medium Error; Unrecovered read error.
|
||||
Sectors 20832 - 20847: Medium Error; Unrecovered read error.
|
||||
Sector 20832, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20832: Medium Error; Unrecovered read error.
|
||||
Sector 20833, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20833: Medium Error; Unrecovered read error.
|
||||
Sector 20834, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20834: Medium Error; Unrecovered read error.
|
||||
Sector 20835, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20835: Medium Error; Unrecovered read error.
|
||||
Sector 20836, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20836: Medium Error; Unrecovered read error.
|
||||
Sector 20837, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20837: Medium Error; Unrecovered read error.
|
||||
Sector 20838, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20838: Medium Error; Unrecovered read error.
|
||||
Sector 20839, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20839: Medium Error; Unrecovered read error.
|
||||
Sector 20840, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20840: Medium Error; Unrecovered read error.
|
||||
Sector 20841, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20841: Medium Error; Unrecovered read error.
|
||||
Sector 20842, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20842: Medium Error; Unrecovered read error.
|
||||
Sector 20843, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20843: Medium Error; Unrecovered read error.
|
||||
Sector 20844, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20844: Medium Error; Unrecovered read error.
|
||||
Sector 20845, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20845: Medium Error; Unrecovered read error.
|
||||
Sector 20846, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20846: Medium Error; Unrecovered read error.
|
||||
Sector 20847, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20847: Medium Error; Unrecovered read error.
|
||||
Sectors 20848 - 20863: Medium Error; Unrecovered read error.
|
||||
Sector 20848, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20848: Medium Error; Unrecovered read error.
|
||||
Sector 20849, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20849: Medium Error; Unrecovered read error.
|
||||
Sector 20850, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20850: Medium Error; Unrecovered read error.
|
||||
Sector 20851, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20851: Medium Error; Unrecovered read error.
|
||||
Sector 20852, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20852: Medium Error; Unrecovered read error.
|
||||
Sector 20853, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20853: Medium Error; Unrecovered read error.
|
||||
Sector 20854, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20854: Medium Error; Unrecovered read error.
|
||||
Sector 20855, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20855: Medium Error; Unrecovered read error.
|
||||
Sector 20856, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20856: Medium Error; Unrecovered read error.
|
||||
Sector 20857, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20857: Medium Error; Unrecovered read error.
|
||||
Sector 20858, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20858: Medium Error; Unrecovered read error.
|
||||
Sector 20859, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20859: Medium Error; Unrecovered read error.
|
||||
Sector 20860, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20860: Medium Error; Unrecovered read error.
|
||||
Sector 20861, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20861: Medium Error; Unrecovered read error.
|
||||
Sector 20862, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20862: Medium Error; Unrecovered read error.
|
||||
Sector 20863, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20863: Medium Error; Unrecovered read error.
|
||||
Sector 20864, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20864: Medium Error; Unrecovered read error.
|
||||
Sector 20865, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20865: Medium Error; Unrecovered read error.
|
||||
Sector 20866, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20866: Medium Error; Unrecovered read error.
|
||||
Sector 20867, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20867: Medium Error; Unrecovered read error.
|
||||
Sector 20868, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20868: Medium Error; Unrecovered read error.
|
||||
Sector 20869, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20869: Medium Error; Unrecovered read error.
|
||||
Sector 20870, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20870: Medium Error; Unrecovered read error.
|
||||
Sector 20871, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20871: Medium Error; Unrecovered read error.
|
||||
Sector 20872, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20872: Medium Error; Unrecovered read error.
|
||||
Sector 20873, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20873: Medium Error; Unrecovered read error.
|
||||
Sector 20874, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20874: Medium Error; Unrecovered read error.
|
||||
Sector 20875, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20875: Medium Error; Unrecovered read error.
|
||||
|
||||
Trying to complete image, reading pass 3 of 3.
|
||||
Sector 3000, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3000: Medium Error; Unrecovered read error.
|
||||
Sector 3001, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3001: Medium Error; Unrecovered read error.
|
||||
Sector 3002, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3002: Medium Error; Unrecovered read error.
|
||||
Sector 3003, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3003: Medium Error; Unrecovered read error.
|
||||
Sector 3004, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3004: Medium Error; Unrecovered read error.
|
||||
Sector 3005, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3005: Medium Error; Unrecovered read error.
|
||||
Sector 3006, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3006: Medium Error; Unrecovered read error.
|
||||
Sector 3007, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3007: Medium Error; Unrecovered read error.
|
||||
Sectors 3008 - 3023: Medium Error; Unrecovered read error.
|
||||
Sector 3008, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3008: Medium Error; Unrecovered read error.
|
||||
Sector 3009, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3009: Medium Error; Unrecovered read error.
|
||||
Sector 3010, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3010: Medium Error; Unrecovered read error.
|
||||
Sector 3011, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3011: Medium Error; Unrecovered read error.
|
||||
Sector 3012, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3012: Medium Error; Unrecovered read error.
|
||||
Sector 3013, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3013: Medium Error; Unrecovered read error.
|
||||
Sector 3014, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3014: Medium Error; Unrecovered read error.
|
||||
Sector 3015, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3015: Medium Error; Unrecovered read error.
|
||||
Sector 3016, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3016: Medium Error; Unrecovered read error.
|
||||
Sector 3017, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3017: Medium Error; Unrecovered read error.
|
||||
Sector 3018, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3018: Medium Error; Unrecovered read error.
|
||||
Sector 3019, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3019: Medium Error; Unrecovered read error.
|
||||
Sector 3020, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3020: Medium Error; Unrecovered read error.
|
||||
Sector 3021, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3021: Medium Error; Unrecovered read error.
|
||||
Sector 3022, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3022: Medium Error; Unrecovered read error.
|
||||
Sector 3023, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3023: Medium Error; Unrecovered read error.
|
||||
Sectors 3024 - 3039: Medium Error; Unrecovered read error.
|
||||
Sector 3024, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3024: Medium Error; Unrecovered read error.
|
||||
Sector 3025, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3025: Medium Error; Unrecovered read error.
|
||||
Sector 3026, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3026: Medium Error; Unrecovered read error.
|
||||
Sector 3027, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3027: Medium Error; Unrecovered read error.
|
||||
Sector 3028, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3028: Medium Error; Unrecovered read error.
|
||||
Sector 3029, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3029: Medium Error; Unrecovered read error.
|
||||
Sector 3030, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3030: Medium Error; Unrecovered read error.
|
||||
Sector 3031, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3031: Medium Error; Unrecovered read error.
|
||||
Sector 3032, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3032: Medium Error; Unrecovered read error.
|
||||
Sector 3033, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3033: Medium Error; Unrecovered read error.
|
||||
Sector 3034, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3034: Medium Error; Unrecovered read error.
|
||||
Sector 3035, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3035: Medium Error; Unrecovered read error.
|
||||
Sector 3036, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3036: Medium Error; Unrecovered read error.
|
||||
Sector 3037, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3037: Medium Error; Unrecovered read error.
|
||||
Sector 3038, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3038: Medium Error; Unrecovered read error.
|
||||
Sector 3039, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3039: Medium Error; Unrecovered read error.
|
||||
Sector 3040, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3040: Medium Error; Unrecovered read error.
|
||||
Sector 3041, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3041: Medium Error; Unrecovered read error.
|
||||
Sector 3042, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3042: Medium Error; Unrecovered read error.
|
||||
Sector 3043, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3043: Medium Error; Unrecovered read error.
|
||||
Sector 3044, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3044: Medium Error; Unrecovered read error.
|
||||
Sector 3045, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 3045: Medium Error; Unrecovered read error.
|
||||
Sectors 20800 - 20815: Medium Error; Unrecovered read error.
|
||||
Sector 20800, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20800: Medium Error; Unrecovered read error.
|
||||
Sector 20801, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20801: Medium Error; Unrecovered read error.
|
||||
Sector 20802, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20802: Medium Error; Unrecovered read error.
|
||||
Sector 20803, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20803: Medium Error; Unrecovered read error.
|
||||
Sector 20804, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20804: Medium Error; Unrecovered read error.
|
||||
Sector 20805, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20805: Medium Error; Unrecovered read error.
|
||||
Sector 20806, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20806: Medium Error; Unrecovered read error.
|
||||
Sector 20807, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20807: Medium Error; Unrecovered read error.
|
||||
Sector 20808, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20808: Medium Error; Unrecovered read error.
|
||||
Sector 20809, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20809: Medium Error; Unrecovered read error.
|
||||
Sector 20810, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20810: Medium Error; Unrecovered read error.
|
||||
Sector 20811, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20811: Medium Error; Unrecovered read error.
|
||||
Sector 20812, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20812: Medium Error; Unrecovered read error.
|
||||
Sector 20813, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20813: Medium Error; Unrecovered read error.
|
||||
Sector 20814, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20814: Medium Error; Unrecovered read error.
|
||||
Sector 20815, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20815: Medium Error; Unrecovered read error.
|
||||
Sectors 20816 - 20831: Medium Error; Unrecovered read error.
|
||||
Sector 20816, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20816: Medium Error; Unrecovered read error.
|
||||
Sector 20817, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20817: Medium Error; Unrecovered read error.
|
||||
Sector 20818, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20818: Medium Error; Unrecovered read error.
|
||||
Sector 20819, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20819: Medium Error; Unrecovered read error.
|
||||
Sector 20820, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20820: Medium Error; Unrecovered read error.
|
||||
Sector 20821, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20821: Medium Error; Unrecovered read error.
|
||||
Sector 20822, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20822: Medium Error; Unrecovered read error.
|
||||
Sector 20823, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20823: Medium Error; Unrecovered read error.
|
||||
Sector 20824, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20824: Medium Error; Unrecovered read error.
|
||||
Sector 20825, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20825: Medium Error; Unrecovered read error.
|
||||
Sector 20826, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20826: Medium Error; Unrecovered read error.
|
||||
Sector 20827, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20827: Medium Error; Unrecovered read error.
|
||||
Sector 20828, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20828: Medium Error; Unrecovered read error.
|
||||
Sector 20829, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20829: Medium Error; Unrecovered read error.
|
||||
Sector 20830, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20830: Medium Error; Unrecovered read error.
|
||||
Sector 20831, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20831: Medium Error; Unrecovered read error.
|
||||
Sectors 20832 - 20847: Medium Error; Unrecovered read error.
|
||||
Sector 20832, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20832: Medium Error; Unrecovered read error.
|
||||
Sector 20833, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20833: Medium Error; Unrecovered read error.
|
||||
Sector 20834, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20834: Medium Error; Unrecovered read error.
|
||||
Sector 20835, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20835: Medium Error; Unrecovered read error.
|
||||
Sector 20836, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20836: Medium Error; Unrecovered read error.
|
||||
Sector 20837, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20837: Medium Error; Unrecovered read error.
|
||||
Sector 20838, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20838: Medium Error; Unrecovered read error.
|
||||
Sector 20839, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20839: Medium Error; Unrecovered read error.
|
||||
Sector 20840, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20840: Medium Error; Unrecovered read error.
|
||||
Sector 20841, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20841: Medium Error; Unrecovered read error.
|
||||
Sector 20842, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20842: Medium Error; Unrecovered read error.
|
||||
Sector 20843, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20843: Medium Error; Unrecovered read error.
|
||||
Sector 20844, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20844: Medium Error; Unrecovered read error.
|
||||
Sector 20845, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20845: Medium Error; Unrecovered read error.
|
||||
Sector 20846, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20846: Medium Error; Unrecovered read error.
|
||||
Sector 20847, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20847: Medium Error; Unrecovered read error.
|
||||
Sectors 20848 - 20863: Medium Error; Unrecovered read error.
|
||||
Sector 20848, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20848: Medium Error; Unrecovered read error.
|
||||
Sector 20849, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20849: Medium Error; Unrecovered read error.
|
||||
Sector 20850, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20850: Medium Error; Unrecovered read error.
|
||||
Sector 20851, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20851: Medium Error; Unrecovered read error.
|
||||
Sector 20852, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20852: Medium Error; Unrecovered read error.
|
||||
Sector 20853, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20853: Medium Error; Unrecovered read error.
|
||||
Sector 20854, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20854: Medium Error; Unrecovered read error.
|
||||
Sector 20855, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20855: Medium Error; Unrecovered read error.
|
||||
Sector 20856, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20856: Medium Error; Unrecovered read error.
|
||||
Sector 20857, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20857: Medium Error; Unrecovered read error.
|
||||
Sector 20858, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20858: Medium Error; Unrecovered read error.
|
||||
Sector 20859, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20859: Medium Error; Unrecovered read error.
|
||||
Sector 20860, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20860: Medium Error; Unrecovered read error.
|
||||
Sector 20861, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20861: Medium Error; Unrecovered read error.
|
||||
Sector 20862, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20862: Medium Error; Unrecovered read error.
|
||||
Sector 20863, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20863: Medium Error; Unrecovered read error.
|
||||
Sector 20864, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20864: Medium Error; Unrecovered read error.
|
||||
Sector 20865, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20865: Medium Error; Unrecovered read error.
|
||||
Sector 20866, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20866: Medium Error; Unrecovered read error.
|
||||
Sector 20867, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20867: Medium Error; Unrecovered read error.
|
||||
Sector 20868, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20868: Medium Error; Unrecovered read error.
|
||||
Sector 20869, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20869: Medium Error; Unrecovered read error.
|
||||
Sector 20870, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20870: Medium Error; Unrecovered read error.
|
||||
Sector 20871, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20871: Medium Error; Unrecovered read error.
|
||||
Sector 20872, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20872: Medium Error; Unrecovered read error.
|
||||
Sector 20873, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20873: Medium Error; Unrecovered read error.
|
||||
Sector 20874, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20874: Medium Error; Unrecovered read error.
|
||||
Sector 20875, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20875: Medium Error; Unrecovered read error.
|
||||
|
||||
579 sectors read; 122 unreadable sectors.
|
||||
1308
regtest/database/RS01_read_multipass_partial_success
Normal file
1308
regtest/database/RS01_read_multipass_partial_success
Normal file
File diff suppressed because one or more lines are too long
18
regtest/database/RS01_read_new_with_invalid_range_no_ecc
Normal file
18
regtest/database/RS01_read_new_with_invalid_range_no_ecc
Normal file
@@ -0,0 +1,18 @@
|
||||
ignore
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
Using READ CD.
|
||||
Medium "Random Image": CD-R mode 1, 21000 sectors, created 16-07-2006.
|
||||
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Sectors must be in range [0..20999].
|
||||
|
||||
|
||||
15
regtest/database/RS01_read_new_with_range_no_ecc
Normal file
15
regtest/database/RS01_read_new_with_range_no_ecc
Normal file
File diff suppressed because one or more lines are too long
6
regtest/database/RS01_read_no_device
Normal file
6
regtest/database/RS01_read_no_device
Normal file
@@ -0,0 +1,6 @@
|
||||
ignore
|
||||
ignore
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Could not open /dev/sdz: No such file or directory
|
||||
|
||||
6
regtest/database/RS01_read_no_device_access
Normal file
6
regtest/database/RS01_read_no_device_access
Normal file
@@ -0,0 +1,6 @@
|
||||
ignore
|
||||
ignore
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Could not open sdz: Permission denied
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user