/external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
D | DefaultExtractorInputTest.java | 40 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in DefaultExtractorInputTest 54 byte[] target = new byte[TEST_DATA.length]; in readMultipleTimes() 57 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 59 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 61 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 64 assertThat(TEST_DATA).isEqualTo(target); in readMultipleTimes() 70 byte[] target = new byte[TEST_DATA.length]; in readAlreadyPeeked() 72 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 73 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() 75 assertThat(bytesRead).isEqualTo(TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|
D | ExtractorUtilTest.java | 34 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in ExtractorUtilTest 42 .appendReadData(Arrays.copyOfRange(TEST_DATA, 0, 3)) in peekToLengthEndNotReached() 43 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLengthEndNotReached() 44 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLengthEndNotReached() 47 byte[] target = new byte[TEST_DATA.length]; in peekToLengthEndNotReached() 56 .isEqualTo(Arrays.copyOf(TEST_DATA, length)); in peekToLengthEndNotReached() 65 .appendReadData(Arrays.copyOfRange(TEST_DATA, 0, 3)) in peekToLengthEndReached() 66 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLengthEndReached() 67 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLengthEndReached() 70 byte[] target = new byte[TEST_DATA.length]; in peekToLengthEndReached() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
D | DefaultExtractorInputTest.java | 40 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in DefaultExtractorInputTest 53 byte[] target = new byte[TEST_DATA.length]; in readMultipleTimes() 56 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 58 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 60 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 63 assertThat(TEST_DATA).isEqualTo(target); in readMultipleTimes() 69 byte[] target = new byte[TEST_DATA.length]; in readAlreadyPeeked() 71 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 72 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() 74 assertThat(bytesRead).isEqualTo(TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|
D | ExtractorUtilTest.java | 36 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in ExtractorUtilTest 44 .appendReadData(Arrays.copyOf(TEST_DATA, 3)) in peekToLength_endNotReached() 45 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLength_endNotReached() 46 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLength_endNotReached() 49 byte[] target = new byte[TEST_DATA.length]; in peekToLength_endNotReached() 58 .isEqualTo(Arrays.copyOf(TEST_DATA, length)); in peekToLength_endNotReached() 67 .appendReadData(Arrays.copyOf(TEST_DATA, 3)) in peekToLength_endReached() 68 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLength_endReached() 69 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLength_endReached() 72 byte[] target = new byte[TEST_DATA.length]; in peekToLength_endReached() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
D | DefaultExtractorInputTest.java | 40 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in DefaultExtractorInputTest 53 byte[] target = new byte[TEST_DATA.length]; in readMultipleTimes() 56 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 58 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 60 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 63 assertThat(TEST_DATA).isEqualTo(target); in readMultipleTimes() 69 byte[] target = new byte[TEST_DATA.length]; in readAlreadyPeeked() 71 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 72 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() 74 assertThat(bytesRead).isEqualTo(TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|
D | ExtractorUtilTest.java | 36 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8}; field in ExtractorUtilTest 44 .appendReadData(Arrays.copyOf(TEST_DATA, 3)) in peekToLength_endNotReached() 45 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLength_endNotReached() 46 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLength_endNotReached() 49 byte[] target = new byte[TEST_DATA.length]; in peekToLength_endNotReached() 58 .isEqualTo(Arrays.copyOf(TEST_DATA, length)); in peekToLength_endNotReached() 67 .appendReadData(Arrays.copyOf(TEST_DATA, 3)) in peekToLength_endReached() 68 .appendReadData(Arrays.copyOfRange(TEST_DATA, 3, 6)) in peekToLength_endReached() 69 .appendReadData(Arrays.copyOfRange(TEST_DATA, 6, 9)); in peekToLength_endReached() 72 byte[] target = new byte[TEST_DATA.length]; in peekToLength_endReached() [all …]
|
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/upstream/ |
D | ByteArrayDataSourceTest.java | 32 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; field in ByteArrayDataSourceTest 37 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 1, 0, 1, false); in fullReadSingleBytes() 42 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 100, 0, 100, false); in fullReadAllBytes() 48 readTestData(TEST_DATA, 0, TEST_DATA.length, 1, 0, 1, false); in limitReadSingleBytes() 50 readTestData(TEST_DATA, 0, 6, 1, 0, 1, false); in limitReadSingleBytes() 56 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 2, 0, 2, false); in fullReadTwoBytes() 64 readTestData(TEST_DATA, 0, 6, 2, 0, 2, false); in limitReadTwoBytes() 66 readTestData(TEST_DATA, 0, 7, 2, 0, 2, false); in limitReadTwoBytes() 72 readTestData(TEST_DATA, 1, C.LENGTH_UNSET, 1, 0, 1, false); in readFromValidOffsets() 74 readTestData(TEST_DATA, 1, 6, 1, 0, 1, false); in readFromValidOffsets() [all …]
|
D | DataSourceInputStreamTest.java | 33 private static final byte[] TEST_DATA = TestUtil.buildTestData(16); field in DataSourceInputStreamTest 41 for (int i = 0; i < TEST_DATA.length; i++) { in readSingleBytes() 45 assertThat(readByte).isEqualTo(TEST_DATA[i] & 0xFF); in readSingleBytes() 50 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); in readSingleBytes() 59 byte[] readBytes = new byte[TEST_DATA.length]; 61 while (totalBytesRead < TEST_DATA.length) { 63 TEST_DATA.length - totalBytesRead); 69 assertThat(readBytes).isEqualTo(TEST_DATA); 71 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); 72 assertThat(totalBytesRead).isEqualTo(TEST_DATA.length); [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/ |
D | ByteArrayDataSourceTest.java | 33 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; field in ByteArrayDataSourceTest 38 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 1, 0, 1, false); in fullReadSingleBytes() 43 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 100, 0, 100, false); in fullReadAllBytes() 49 readTestData(TEST_DATA, 0, TEST_DATA.length, 1, 0, 1, false); in limitReadSingleBytes() 51 readTestData(TEST_DATA, 0, 6, 1, 0, 1, false); in limitReadSingleBytes() 57 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 2, 0, 2, false); in fullReadTwoBytes() 65 readTestData(TEST_DATA, 0, 6, 2, 0, 2, false); in limitReadTwoBytes() 67 readTestData(TEST_DATA, 0, 7, 2, 0, 2, false); in limitReadTwoBytes() 73 readTestData(TEST_DATA, 1, C.LENGTH_UNSET, 1, 0, 1, false); in readFromValidOffsets() 75 readTestData(TEST_DATA, 1, 6, 1, 0, 1, false); in readFromValidOffsets() [all …]
|
D | DataSourceInputStreamTest.java | 33 private static final byte[] TEST_DATA = TestUtil.buildTestData(16); field in DataSourceInputStreamTest 41 for (int i = 0; i < TEST_DATA.length; i++) { in readSingleBytes() 45 assertThat(readByte).isEqualTo(TEST_DATA[i] & 0xFF); in readSingleBytes() 50 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); in readSingleBytes() 59 byte[] readBytes = new byte[TEST_DATA.length]; 61 while (totalBytesRead < TEST_DATA.length) { 63 inputStream.read(readBytes, totalBytesRead, TEST_DATA.length - totalBytesRead); 69 assertThat(readBytes).isEqualTo(TEST_DATA); 71 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); 72 assertThat(totalBytesRead).isEqualTo(TEST_DATA.length); [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/ |
D | ByteArrayDataSourceTest.java | 33 private static final byte[] TEST_DATA = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; field in ByteArrayDataSourceTest 38 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 1, 0, 1, false); in fullReadSingleBytes() 43 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 100, 0, 100, false); in fullReadAllBytes() 49 readTestData(TEST_DATA, 0, TEST_DATA.length, 1, 0, 1, false); in limitReadSingleBytes() 51 readTestData(TEST_DATA, 0, 6, 1, 0, 1, false); in limitReadSingleBytes() 57 readTestData(TEST_DATA, 0, C.LENGTH_UNSET, 2, 0, 2, false); in fullReadTwoBytes() 65 readTestData(TEST_DATA, 0, 6, 2, 0, 2, false); in limitReadTwoBytes() 67 readTestData(TEST_DATA, 0, 7, 2, 0, 2, false); in limitReadTwoBytes() 73 readTestData(TEST_DATA, 1, C.LENGTH_UNSET, 1, 0, 1, false); in readFromValidOffsets() 75 readTestData(TEST_DATA, 1, 6, 1, 0, 1, false); in readFromValidOffsets() [all …]
|
D | DataSourceInputStreamTest.java | 33 private static final byte[] TEST_DATA = TestUtil.buildTestData(16); field in DataSourceInputStreamTest 41 for (int i = 0; i < TEST_DATA.length; i++) { in readSingleBytes() 45 assertThat(readByte).isEqualTo(TEST_DATA[i] & 0xFF); in readSingleBytes() 50 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); in readSingleBytes() 59 byte[] readBytes = new byte[TEST_DATA.length]; 61 while (totalBytesRead < TEST_DATA.length) { 63 inputStream.read(readBytes, totalBytesRead, TEST_DATA.length - totalBytesRead); 69 assertThat(readBytes).isEqualTo(TEST_DATA); 71 assertThat(inputStream.bytesRead()).isEqualTo(TEST_DATA.length); 72 assertThat(totalBytesRead).isEqualTo(TEST_DATA.length); [all …]
|
/external/autotest/client/cros/enterprise/ |
D | enterprise_policy_utils_unittest.py | 32 TEST_DATA = {} variable 41 TEST_DATA[name] = ast.literal_eval(data) 59 get_pol_mock.return_value = TEST_DATA['TEST_RAW'] 60 self.assertEqual(epu.get_all_policies(None), TEST_DATA['TEST_RAW']) 77 subtest_data = copy.deepcopy(TEST_DATA['TEST_RAW']) 79 self.assertEqual(subtest_data, TEST_DATA['TEST_RAW']) 96 subtest_data = copy.deepcopy(TEST_DATA['PARTIAL_RAW']) 98 self.assertEqual(subtest_data, TEST_DATA['PARTIAL_RAW']) 101 subtest_data = copy.deepcopy(TEST_DATA['TEST_MULTI_EXT']) 103 self.assertEqual(subtest_data, TEST_DATA['TEST_MULTI_EXT']) [all …]
|
/external/exoplayer/tree/extensions/cronet/src/test/java/com/google/android/exoplayer2/ext/cronet/ |
D | ByteArrayUploadDataProviderTest.java | 37 private static final byte[] TEST_DATA = new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; field in ByteArrayUploadDataProviderTest 46 byteBuffer = ByteBuffer.allocate(TEST_DATA.length); in setUp() 47 byteArrayUploadDataProvider = new ByteArrayUploadDataProvider(TEST_DATA); in setUp() 52 assertThat(byteArrayUploadDataProvider.getLength()).isEqualTo(TEST_DATA.length); in getLength() 58 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in readFullBuffer() 63 byte[] firstHalf = Arrays.copyOf(TEST_DATA, TEST_DATA.length / 2); in readPartialBuffer() 64 byte[] secondHalf = Arrays.copyOfRange(TEST_DATA, TEST_DATA.length / 2, TEST_DATA.length); in readPartialBuffer() 65 byteBuffer = ByteBuffer.allocate(TEST_DATA.length / 2); in readPartialBuffer() 81 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind() 87 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind()
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/cronet/src/test/java/com/google/android/exoplayer2/ext/cronet/ |
D | ByteArrayUploadDataProviderTest.java | 37 private static final byte[] TEST_DATA = new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; field in ByteArrayUploadDataProviderTest 46 byteBuffer = ByteBuffer.allocate(TEST_DATA.length); in setUp() 47 byteArrayUploadDataProvider = new ByteArrayUploadDataProvider(TEST_DATA); in setUp() 52 assertThat(byteArrayUploadDataProvider.getLength()).isEqualTo(TEST_DATA.length); in getLength() 58 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in readFullBuffer() 63 byte[] firstHalf = Arrays.copyOf(TEST_DATA, TEST_DATA.length / 2); in readPartialBuffer() 64 byte[] secondHalf = Arrays.copyOfRange(TEST_DATA, TEST_DATA.length / 2, TEST_DATA.length); in readPartialBuffer() 65 byteBuffer = ByteBuffer.allocate(TEST_DATA.length / 2); in readPartialBuffer() 81 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind() 87 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind()
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/cronet/src/test/java/com/google/android/exoplayer2/ext/cronet/ |
D | ByteArrayUploadDataProviderTest.java | 37 private static final byte[] TEST_DATA = new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; field in ByteArrayUploadDataProviderTest 46 byteBuffer = ByteBuffer.allocate(TEST_DATA.length); in setUp() 47 byteArrayUploadDataProvider = new ByteArrayUploadDataProvider(TEST_DATA); in setUp() 52 assertThat(byteArrayUploadDataProvider.getLength()).isEqualTo(TEST_DATA.length); in getLength() 58 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in readFullBuffer() 63 byte[] firstHalf = Arrays.copyOf(TEST_DATA, TEST_DATA.length / 2); in readPartialBuffer() 64 byte[] secondHalf = Arrays.copyOfRange(TEST_DATA, TEST_DATA.length / 2, TEST_DATA.length); in readPartialBuffer() 65 byteBuffer = ByteBuffer.allocate(TEST_DATA.length / 2); in readPartialBuffer() 81 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind() 87 assertThat(byteBuffer.array()).isEqualTo(TEST_DATA); in rewind()
|
/external/rust/crates/codespan-reporting/tests/ |
D | term.rs | 26 insta::assert_snapshot!(TEST_DATA.emit_color(&config)); 37 insta::assert_snapshot!(TEST_DATA.emit_color(&config)); 48 insta::assert_snapshot!(TEST_DATA.emit_color(&config)); 59 insta::assert_snapshot!(TEST_DATA.emit_no_color(&config)); 70 insta::assert_snapshot!(TEST_DATA.emit_no_color(&config)); 81 insta::assert_snapshot!(TEST_DATA.emit_no_color(&config)); 93 insta::assert_snapshot!(TEST_DATA.emit_no_color(&config)); 102 static ref TEST_DATA: TestData<'static, SimpleFiles<&'static str, &'static str>> = { 133 static ref TEST_DATA: TestData<'static, SimpleFiles<&'static str, String>> = { 186 static ref TEST_DATA: TestData<'static, SimpleFiles<&'static str, String>> = { [all …]
|
/external/exoplayer/tree/testutils/src/test/java/com/google/android/exoplayer2/testutil/ |
D | FakeDataSourceTest.java | 37 private static final byte[] TEST_DATA = TestUtil.buildTestData(15); field in FakeDataSourceTest 38 private static final byte[] TEST_DATA_PART_1 = Arrays.copyOf(TEST_DATA, 10); 39 private static final byte[] TEST_DATA_PART_2 = Arrays.copyOfRange(TEST_DATA, 10, 15); 62 assertBuffer(TEST_DATA); in testReadFull() 64 assertBuffer(TEST_DATA); in testReadFull() 106 .appendReadData(TEST_DATA) in testDummyData() 112 assertBuffer(TEST_DATA); in testDummyData() 126 .appendReadData(TEST_DATA) in testException() 128 .appendReadData(TEST_DATA) in testException() 132 assertBuffer(TEST_DATA); in testException() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/test/java/com/google/android/exoplayer2/testutil/ |
D | FakeDataSourceTest.java | 37 private static final byte[] TEST_DATA = TestUtil.buildTestData(15); field in FakeDataSourceTest 38 private static final byte[] TEST_DATA_PART_1 = Arrays.copyOf(TEST_DATA, 10); 39 private static final byte[] TEST_DATA_PART_2 = Arrays.copyOfRange(TEST_DATA, 10, 15); 62 assertBuffer(TEST_DATA); in testReadFull() 64 assertBuffer(TEST_DATA); in testReadFull() 106 .appendReadData(TEST_DATA) in testFakeData() 112 assertBuffer(TEST_DATA); in testFakeData() 126 .appendReadData(TEST_DATA) in testException() 128 .appendReadData(TEST_DATA) in testException() 132 assertBuffer(TEST_DATA); in testException() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/test/java/com/google/android/exoplayer2/testutil/ |
D | FakeDataSourceTest.java | 37 private static final byte[] TEST_DATA = TestUtil.buildTestData(15); field in FakeDataSourceTest 38 private static final byte[] TEST_DATA_PART_1 = Arrays.copyOf(TEST_DATA, 10); 39 private static final byte[] TEST_DATA_PART_2 = Arrays.copyOfRange(TEST_DATA, 10, 15); 62 assertBuffer(TEST_DATA); in testReadFull() 64 assertBuffer(TEST_DATA); in testReadFull() 106 .appendReadData(TEST_DATA) in testFakeData() 112 assertBuffer(TEST_DATA); in testFakeData() 126 .appendReadData(TEST_DATA) in testException() 128 .appendReadData(TEST_DATA) in testException() 132 assertBuffer(TEST_DATA); in testException() [all …]
|
/external/e2fsprogs/tests/f_dup4/ |
D | script | 7 TEST_DATA="$test_name.tmp" 9 echo "/ Murphy Magic. The SeCrEt of the UnIvErSe is 43, NOT 42" > $TEST_DATA 23 write $TEST_DATA foo 25 write $TEST_DATA bar 27 write $TEST_DATA baz 29 write $TEST_DATA quux 53 rm -f $TEST_DATA 55 unset E2FSCK_TIME TEST_DATA
|
/external/e2fsprogs/tests/d_loaddump/ |
D | script | 10 TEST_DATA=$test_name.tmp 23 dd if=$TEST_BITS of=$TEST_DATA bs=128k count=1 conv=sync > /dev/null 2>&1 24 echo "file fragment odd size" >> $TEST_DATA 26 echo "debugfs -R ''write $TEST_DATA test_data'' -w test.img" >> $OUT.new 27 $DEBUGFS -R "write $TEST_DATA test_data" -w $TMPFILE >> $OUT.new 2>&1 41 echo "cmp $TEST_DATA $VERIFY_DATA" >> $OUT.new 42 cmp $TEST_DATA $VERIFY_DATA >>$OUT.new 52 rm -f $VERIFY_DATA $TEST_DATA $TMPFILE $OUT.new 67 unset VERIFY_FSCK_OPT NATIVE_FSCK_OPT OUT EXP TEST_DATA VERIFY_DATA
|
/external/e2fsprogs/tests/f_dup_resize/ |
D | script | 7 TEST_DATA="$test_name.tmp" 9 dd if=$TEST_BITS of=$TEST_DATA bs=63k count=1 conv=sync > /dev/null 2>&1 16 write $TEST_DATA debugfs 27 rm -f $TEST_DATA 29 unset E2FSCK_TIME TEST_DATA
|
/external/e2fsprogs/tests/f_bigalloc_badinode/ |
D | script | 7 TEST_DATA="$test_name.tmp" 9 dd if=$TEST_BITS of=$TEST_DATA bs=4k count=2 seek=1> /dev/null 2>&1 14 write $TEST_DATA testfile 21 rm -f $TEST_DATA 23 unset E2FSCK_TIME TEST_DATA
|
/external/e2fsprogs/tests/f_bigalloc_orphan_list/ |
D | script | 7 TEST_DATA="$test_name.tmp" 9 dd if=$TEST_BITS of=$TEST_DATA bs=28k count=1 > /dev/null 2>&1 14 write $TEST_DATA testfile 26 rm -f $TEST_DATA 28 unset E2FSCK_TIME TEST_DATA
|