The output from a cron job is sent by email to the cron job owner by default.
I assume your script is working fine and you have a bunch of emails in the queue, or if mail is not configured, log messages indicating that cron cannot send emails.
Try this instead of a script:
#!/bin/sh
date >>/tmp/crontest.txt
/tmp/crontest.txt
, , .