Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-08 | Add a few test-cases for rc_encode. | Uwe Hermann | |
2018-03-07 | Add a few sda2506 test-cases. | Uwe Hermann | |
2018-02-15 | ir_nec: add test for the optional carrier detect feature | Gerhard Sittig | |
The IR-NEC decoder optionally can handle input streams that still have the carrier signal. Add a test for this configuration, derived from the test which uses the signal that had the carrier removed in hardware. The same data is seen, just at different sample numbers. The content was verified by means of the "cut -d ' ' -f 2-" and "diff" commands. | |||
2018-02-13 | graycode: add test for stream without sample rate | Gerhard Sittig | |
Use a smaller input stream which lacks a samplerate spec. This results in output that lacks the timing information (motion speed), but step count and direction are identical to the other existing test. | |||
2018-02-11 | stepper_motor: add test for input stream without sample rate | Gerhard Sittig | |
The stepper motor decoder can still determine the steps' directions and count. Missing input sample rates just prevent the decoder from outputting speed annotations. All other decoder output is identical. | |||
2018-02-11 | stepper_motor: lack of samplerate is not fatal any longer | Gerhard Sittig | |
2018-02-11 | i2s: add test for stream without sample rate | Gerhard Sittig | |
Use a smaller input stream which lacks a samplerate spec. This results in identical decoder output (the existing test did not cover throughput annotations). | |||
2018-02-10 | i2s: lack of samplerate is not fatal any longer | Gerhard Sittig | |
2018-02-10 | i2c: add test for input stream without sample rate (identical decoder output) | Gerhard Sittig | |
The existing test did not check the throughput annotation. Which is why the decoder output is identical for input streams with and without a sample rate specification. | |||
2018-02-09 | i2c: lack of samplerate is not fatal any longer | Gerhard Sittig | |
2018-01-25 | ac97: introduce a basic test with the realtek alc655 snippet | Gerhard Sittig | |
2018-01-11 | counter: use HD44780 dump to check counter's reset_edge option | Gerhard Sittig | |
Resetting counters depending on the LCD controller's R/S signal yields numbers that correspond to byte sequences that either "control" hardware (register access) or carry "data" (display text). Provide a test case for the rising edge of RESET. Existing cases already covered the falling edge of RESET which is the default. | |||
2018-01-06 | counter: adjust test config for renamed 'data_edge' option | Gerhard Sittig | |
2018-01-06 | parallel: use HD44780 dump to test parallel's word demux feature | Gerhard Sittig | |
2018-01-03 | Add some counter test-cases. | Uwe Hermann | |
2018-01-01 | parallel: adjust hex number format of expected PD output | Gerhard Sittig | |
The parallel decoder got adjusted to emit annotations for "items" and "words" in a unified format (consistent width, leading zeroes). Adjust the test expectation to match the PD implementation. | |||
2018-01-01 | usb_power_delivery: fixup order of combined annotation text fragments | Gerhard Sittig | |
The USB power delivery decoder got adjusted to construct complex annotations that consisted of several text fragments in a reproducible order. Adjust the test expectation to match the PD implementation. | |||
2017-12-09 | Add some graycode test-cases. | Uwe Hermann | |
2017-11-20 | maple_bus: Add a simple test-case. | Marcus Comstedt | |
2017-11-11 | i2s: Update wav output (PD now emits 32bit samples). | Uwe Hermann | |
2017-10-31 | Adjust ds2432 test cases to the rename to ds243x | Soeren Apel | |
2017-10-19 | Add a DS2432 test-case. | Kevin Redon | |
This fixes (parts of) bug #1019. | |||
2017-07-25 | usb_{signalling,packet,request}: Add another test-case. | Uwe Hermann | |
2017-07-02 | can: catch up with sample number changes after clock sync introduction | Gerhard Sittig | |
The CAN decoder got adjusted to synchronize to the input stream's clock. Catch up in the test expectation. | |||
2017-06-21 | onewire_network: Adjust test expectation for sample number fix in the PD | Gerhard Sittig | |
The start sample number of onewire network decoder annotations got fixed in the decoder implementation (used to start one bit late). Catch up in the test expectation. | |||
2017-06-21 | pwm: Adjust binary output test for sample number fix in the PD | Gerhard Sittig | |
The previous implementation used the period counter instead of the period's actual start and end sample number. The implementation got fixed, catch up in the test expectation. | |||
2017-06-16 | dsi: Update due to recent minor PD changes. | Uwe Hermann | |
2017-06-15 | pwm: Add a few more test-cases. | Uwe Hermann | |
2017-06-06 | spi: Missing samplerate spec is not fatal | Gerhard Sittig | |
Remove the "exception_samplerate" test for the SPI decoder. Lack of a samplerate specification only breaks the emission of the throughput annotations, but still allows decoding the clocked signal. | |||
2017-06-06 | Rename eeprom93cxx to eeprom93xx. | Uwe Hermann | |
2017-06-06 | Add support for initial pin settings. | Uwe Hermann | |
Adapt all tests that require it to use the old behaviour of assuming an initial pin value of 0 (or whatever was previously hardcoded in the PD). for now (this will likely see some changes later). | |||
2017-06-06 | swd: Add missing channels. | Uwe Hermann | |
2017-06-06 | Fix issue in -s output. | Uwe Hermann | |
Option values are strings, not numbers. This fixes: $ ./decoder/pdtest -s jitter Testcase: jitter/toim4243 Protocol decoder: jitter Channel clk=3 Channel sig=2 Error: %d format: a number is required, not str | |||
2017-06-05 | ds28ea00: Update due to decoder rename. | Uwe Hermann | |
2017-05-26 | can: Update test results wrt recent PD changes. | Uwe Hermann | |
2017-05-25 | can: Update wrt new PD warnings. | Uwe Hermann | |
2017-05-21 | sdcard_sd: add CMD23 test | Wolfram Sang | |
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> | |||
2017-05-13 | sdcard_sd: correct cmd numbers when prefixing responses | Wolfram Sang | |
Signed-off-by: Wolfram Sang <wsa@the-dreams.de> | |||
2017-05-13 | timing: Update tests, add some more. | Uwe Hermann | |
2017-05-13 | timing: add tests for noaverage/edge/delta modes | Karl Palsson | |
Signed-off-by: Karl Palsson <karlp@tweak.net.au> | |||
2017-05-13 | args: make pdtest -l behave as advertised. | Karl Palsson | |
Help says -l should list tests. Make it do so. You can still do "-l uart" to see only uart tests, but -l by itself now does what you expect. Signed-off-by: Karl Palsson <karlp@tweak.net.au> | |||
2017-05-06 | pdtest: say that '-f' creates initial output for new tests | Wolfram Sang | |
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> | |||
2017-05-05 | Add an eeprom93cxx test-case. | Uwe Hermann | |
2017-05-05 | Add a microwire test-case. | Uwe Hermann | |
2017-05-02 | sdcard_sd: Update to reflect recent PD changes. | Uwe Hermann | |
2017-04-07 | onewire_network: Add more test-cases. | Uwe Hermann | |
2017-04-07 | onewire_link: Add more test-cases. | Uwe Hermann | |
2017-04-06 | Adjust tests for the new onewire_link decoder | King Kévin | |
Time slots and reset pulse/presence detect end timestamps were off by 1 us. Additional warnings have been added for glitches. Incomplete starting patterns are ignored. | |||
2017-03-28 | Add a Sensirion SHT3x test-case. | Uwe Hermann | |
2017-03-28 | Add a Sensirion SHT2x test-case. | Uwe Hermann | |