Changeset 2986763 in mainline for uspace/app/tmon/commands.h


Ignore:
Timestamp:
2017-12-22T11:59:20Z (6 years ago)
Author:
Petr Mánek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7b7898
Parents:
ab8e0f5
git-author:
Petr Mánek <petr.manek@…> (2017-12-22 11:57:34)
git-committer:
Petr Mánek <petr.manek@…> (2017-12-22 11:59:20)
Message:

tmon: refactoring

Stress tests have been renamed to burst tests because they do not fit the semantic definition of a stress tests. Instead, the read/write as much data as possible into given USB pipes, hence the name burst. They can be accessed using the tmon test-(intr|bulk|isoch)-(in|out) wildcard again. Files test.(c|h), which contain testing framework definitions now, have been renamed to more apt tf.(c.h).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tmon/commands.h

    rab8e0f5 r2986763  
    3838
    3939int tmon_list(int, char **);
    40 int tmon_stress_intr_in(int, char **);
    41 int tmon_stress_intr_out(int, char **);
    42 int tmon_stress_bulk_in(int, char **);
    43 int tmon_stress_bulk_out(int, char **);
    44 int tmon_stress_isoch_in(int, char **);
    45 int tmon_stress_isoch_out(int, char **);
     40
     41/* Burst tests read/write into endpoints as fast as possible. */
     42int tmon_burst_intr_in(int, char **);
     43int tmon_burst_intr_out(int, char **);
     44int tmon_burst_bulk_in(int, char **);
     45int tmon_burst_bulk_out(int, char **);
     46int tmon_burst_isoch_in(int, char **);
     47int tmon_burst_isoch_out(int, char **);
    4648
    4749#endif /* TMON_COMMANDS_H_ */
Note: See TracChangeset for help on using the changeset viewer.