• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1rtc-test.c : Test the Real Time Clock driver
2
3Tests supported as of now
4--------------------------
51. Read test : This reads the time/date from the RTC
6   ioctls tested :- RTC_RD_TIME.
7
82. Alarm Test: Sets the alarm to 5 seconds in future and makes sure it rings.
9   ioctls tested :- RTC_ALM_SET, RTC_ALM_READ,  RTC_AIE_ON, RTC_AIE_OFF.
10
113. Update interrupts test : Sets Update interrupts enable on, waits for five
12   interrupts and then turns it off.
13   ioctls tested :- RTC_UIE_ON, RTC_UIE_OFF.
14
15
16How to Build
17------------
18You have to build the complete LTP package before trying to build these tests.
19After building the complete LTP sources enter this directory and issue a 'make'.
20
21How to Run
22----------
23
24       The tests assume the rtc device node to be "/dev/rtc". If you have a
25different node run the test with the name of the node as a parameter.
26
27Eg. If your node is /dev/rtc0, then run the test as
28
29       $ ./rtc-test /dev/rtc0
30